我已經安裝了通過自制python3
,更新pip
& setuptools
,通過pip
安裝virtualenv
。現在我正在嘗試創建一個虛擬環境。不幸的是,我無法將它添加到virtualenv。基本上:VIRTUALENV不安裝PIP
$ ls -lha venv/bin/
total 80
drwxr-xr-x 9 foghin staff 306B Jan 19 17:16 .
drwxr-xr-x 6 foghin staff 204B Jan 19 17:16 ..
-rw-r--r-- 1 foghin staff 2.2K Jan 19 17:16 activate
-rw-r--r-- 1 foghin staff 1.2K Jan 19 17:16 activate.csh
-rw-r--r-- 1 foghin staff 2.4K Jan 19 17:16 activate.fish
-rw-r--r-- 1 foghin staff 1.1K Jan 19 17:16 activate_this.py
lrwxr-xr-x 1 foghin staff 7B Jan 19 17:16 python -> python3
-rwxr-xr-x 1 foghin staff 13K Jan 19 17:16 python3
lrwxr-xr-x 1 foghin staff 7B Jan 19 17:16 python3.3 -> python3
AFAIK pip
也應該在那裏。創建具有高冗長虛擬ENV產生這樣的:
Installing setuptools, pip...
Running command /Users/foghin/code/tastekid/venv/bin/python3 -c "import sys, pip; pip...ll\"] + sys.argv[1:])" setuptools pip
Ignoring indexes: https://pypi.python.org/simple/
Requirement already satisfied (use --upgrade to upgrade): setuptools in /usr/local/lib/python3.3/site-packages
Requirement already satisfied (use --upgrade to upgrade): pip in /usr/local/lib/python3.3/site-packages
Cleaning up...
...Installing setuptools, pip...done.
這意味着我將所有軟件包安裝在虛擬ENV被激活我的全球網站包(/usr/local/lib/python3.3/site-packages
),但它們不是由沙盒回升蟒蛇。
我怎樣才能讓virtualenv
在我的本地環境中正確安裝pip?
更新: virtualenv版本是1.11。
嘗試使用'virtualenv --no-site-packages'創建環境。 – Ryan
您應該提及'virtualenv'的確切版本號,這樣如果這是一個錯誤,它會更容易追蹤它。 –
從'virtualenv --help'下載@minitech:'--no-site-packages DEPRECATED。僅保留向後兼容性。無法訪問全球網站包現在是默認行爲。「# – Felix