安装flask和flask-RESTful时
% pip install flask-RESTful为什么venv/bin中似乎没有找到flask-RESTful包
发布于 2019-11-28 05:27:27
通常情况下,所有pip安装都位于类似以下内容的位置:
/Library/Frameworks/Python.framework/Versions/x.x/lib/pythonx.x/site-packages/your-package
您可以使用以下命令指定安装程序包的位置:
pip install --target=d:\somewhere\other\than\the\default package_name
https://stackoverflow.com/questions/59078052
复制相似问题