Python新的包管理工具--Pipenv

Alpaca_發表於2018-06-21

pipenv

安裝

Just use pip:

$ pip install pipenv
複製程式碼

Or, if you’re using Ubuntu 17.10:

$ sudo apt install software-properties-common python-software-properties
$ sudo add-apt-repository ppa:pypa/ppa
$ sudo apt update
$ sudo apt install pipenv
複製程式碼

Otherwise, if you’re on MacOS, you can install Pipenv easily with Homebrew:

$ brew install pipenv
複製程式碼

使用

下載東西

mkdir hello

cd hello

pipenv install requests

`

檢視命令

pipenv

進入shell

pipenv shell

python

import requests

這裡寫圖片描述

退出

exit

檢視下載內容版本

pipenv graph

這裡寫圖片描述

顯示目錄環境

pipenv --where

檢查安全漏洞

pipenv --check

解除安裝所有包

pipenv uninstall -- all

設定國內映象

這裡寫圖片描述

利用不同版本建立環境

pipenv --two

pipenv --there

建立python2和python3

一個好工具!

##關注更多我的文章,可以前往我的收藏集

相關文章