找不到来自virtualenv的pip安装软件包

时间:2019-01-31 00:55:21

标签: python import

我使用以下命令创建了virtualenv:

virtualenv -p python3 env

我使用以下命令获取了env:

source env/bin/activate

我使用以下命令来进行pip安装:

(env)  ~/desktop/plotlyjs-flask-example   master  pip install plotly

大约3分钟后,我收到安装成功的提示。 当我尝试从python shell导入此包时,我得到:

(env)  ~/desktop/plotlyjs-flask-example   master  python
Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 03:13:28)
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import plotly
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'plotly' 

0 个答案:

没有答案