ModuleNotFoundError与从github安装的包

时间:2019-12-30 02:18:13

标签: python testing directory anaconda python-3.7

我通过输入以下行在anaconda环境中安装了一个软件包: pip3 install -e git+https://github.com/gauravmm/jupyter-testing.git#egg=jupyter-testing

我一直在线获得ModuleNotFoundError: No module named 'testing'from testing.testing import test。我不知道为什么会这样,并且相信这与我的目录结构的设置有关。

我的目录树如下:

├── hw1_get_started.ipynb
├── requirements.txt
└── src
    └── jupyter-testing
        ├── jupyter_testing.egg-info
        │   ├── dependency_links.txt
        │   ├── PKG-INFO
        │   ├── SOURCES.txt
        │   └── top_level.txt
        ├── LICENSE
        ├── README.md
        ├── setup.py
        └── testing
            ├── __init__.py
            └── testing.py

我正在尝试使用以下模块:https://github.com/gauravmm/jupyter-testing.git#egg=jupyter-testing在在线课程中进行一些测试。

感谢您对我做错事的任何帮助和解释! :)

0 个答案:

没有答案