在python的pyrad模块中安装问题

问题描述 投票:0回答:1

我创建了一个virtualenv并尝试了以下命令来安装pyrad模块:

env) C:\Users\<username>\Documents\Python\radius-demo>python setup.py install
python: can't open file 'setup.py': [Errno 2] No such file or directory

请帮帮我。我的操作系统是Windows 10。

python python-3.x virtualenv radius
1个回答
0
投票

在您的virtualenv内部,您应该运行:pip install pyrad

据我所知,没有这样的命令'python / filename / install'。如果您不熟悉虚拟环境,建议您阅读这篇文章。https://towardsdatascience.com/virtual-environments-104c62d48c54

© www.soinside.com 2019 - 2024. All rights reserved.