在Ubuntu 18.04-x64上,我需要为Python安装Pytest库。
我运行了以下命令:
pip3 install pytest
pytest --version
我收到以下错误:
Command 'pytest' not found, but can be installed with:
sudo apt install python-pytest
但是,当我跑步时:
pip3 show pytest
我得到:
Name: pytest
Version: 4.3.1
...
Location: /home/crispjam/.local/lib/python3.6/site-packages
我决定将pytest.py
文件从其在site-packages
中的位置移到/bin
,但这并不能解决我的问题。
当我跑步时:
pytest --version
我仍然得到:
Command 'pytest' not found, but can be installed with:
sudo apt install python-pytest
这不是正确的做事方式吗?我是否应该担心编辑$PATH
?
编辑:我也尝试过将pytest
与sudo apt install python-pytest
一起安装,但是安装了一个过时的版本-3.3.2
,我无法将其用于我的项目。