linux anaconda 环境不安装模块

linux anaconda environment doesn't install modules

我在 linux 盒子上设置了一个 anaconda 虚拟环境。

dotenv 模块没有安装,所以我尝试安装它。安装成功:

(virt_env_01) [jm@etl01 testing]$ conda install -c conda-forge python-dotenv    
## Package Plan ##
  environment location: /home/jm/anaconda3/envs/virt_env_01
  added / updated specs:
    - python-dotenv
...
Downloading and Extracting Packages
certifi-2018.4.16    |  142 KB | ############################################### | 100%
python-dotenv-0.8.2  |   18 KB | ############################################### | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done

但是,当我尝试 运行 使用它的 python 脚本时,我收到一条错误消息,提示未找到模块。

(virt_env_01) [jm@etl01 testing]$ pytest sql_server_tests.py
platform linux -- Python 3.6.3, pytest-3.2.1, py-1.4.34, pluggy-0.4.0
...
Traceback:
sql_server_tests.py:3: in <module>
    import dotenv
ModuleNotFoundError: No module named 'dotenv'

谁能解释一下我做错了什么?

编辑:

我是上面的运行ning Pytest。所以我尝试了 Python 并且效果很好。 pytest可以安装在虚拟环境之外吗?我不知道这一切是如何运作的。

pytest 模块已过时。

在我 运行 conda install pytest 之后它工作正常。

conda install -c conda-forge python-dotenv 安装 dotenv

anaconda 包管理器 的帮助下,另一个可用的安装是 conda install -c travis dotenv,但它与 python 3

不兼容