在 Windows 中使用 Python 虚拟环境时,如何删除在项目文件夹中创建的错误目录?
Every time I create a Python virtual environment it creates a 'false' directory in my project directory. what is it for? Its messing my contribution to open source. How can I get rid of it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pip config unset global.cache-dir
命令解决了 @phd 在评论中提到的这个问题。谢谢
pip config unset global.cache-dir
command solved this issue as mentioned by @phd in comment.Thanks