黑窗口打开pip提示的两种错误总结
Fatal error in launcher: Unable to create process using
百度查了太多的内容,太多的解决方案,试了很多看到直接一些简单直接的做法卸载pip,重新下载一个pip,但是心里不服输,强迫要解决,最后看了一些方案,总结一下是pip之前版本读取路径的问题,借鉴这两位文章。
https://blog.51cto.com/kalson/1972985(参考,仅供学习)
https://blog.csdn.net/testcs_dn/article/details/54176504(参考,仅供学习)
借鉴大佬的方案,大佬只修改了pip.exe,但是我看见其他文件里的路径也是之前的,修改路径就是python的最新路径保存完成之后,感觉应该就不会有这个问题了,但是我不知道是怎么了,电脑魔怔了出现了新的问题。我崩溃了,于是我带着崩溃的心情继续处理新的问题,找了很多文章,大概这是重点–大概是pip的版本和python的版本不兼容(python,有错误大神们可以随时指出),
WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip.
Please see https://github.com/pypa/pip/issues/5599 for advice on fixing the underlying issue.
To avoid this problem you can invoke Python with ‘-m pip’ instead of running pip directly.
python -m pip install torchtext
python -m pip install Django
运行这两个指令之后,富贵在天生由命,我成功的放弃了。运行pip指令前边加个python -m 也无所谓了。
征求大佬的意见,如何完美解决pip和python版本对不上问题。