我已经在我的系统中安装了pyhton:
which python
/usr/bin/python
我后来使用easy_install安装了pip,然后使用pip来安装virtualenv和django。这些包的默认路径与python的安装位置不同。
which virtualenv
/usr/local/bin/virtualenv
目录的这些差异会影响与这些软件包合作的python的运行吗?
如何更改默认的python目录以与包的目录相对应?会链接(ln -s
)吗?