解決pycharm AttributeError: module 'pip' has no attribute 'main'問題
開啟安裝檔案下PyCharm 2017.3.2\helpers\packaging_tools.py
找到do_install方法
修改如下:
def do_install(pkgs):
try:
try:
from pip._internal import main
except Exception:
from pip import main
except ImportError:
error_no_pip()
return main(['install'] + pkgs)
def do_uninstall(pkgs):
try:
try:
from pip._internal import main
except Exception:
from pip import main
except ImportError:
error_no_pip()
return main(['uninstall', '-y'] + pkgs)
注意返回值去掉pip.
還有注意空格和tab的區別
之後就可以安裝了
相關推薦
成功解決AttributeError: module 'tensorflow.python.keras' has no attribute 'Model'
解決問題 File "object_detection/builders/model_builder_test.py", line 24, in <module> from o
AttributeError: module 'socks' has no attribute 'create_connection'
#!/usr/local/Cellar/python/3.7.3/bin/python3 # coding=ut
解決pycharm AttributeError: module 39;pip39; has no attribute 39;main39;問題
開啟安裝檔案下PyCharm 2017.3.2\helpers\packaging_tools.py 找到do_install方法 修改如下: def do_install(pkgs): try: &nbs
Ubuntu 下Python pip3安裝及問題AttributeError: module 'pip.__main__' has no attribute '_main'
先解除安裝掉原先的pip3 sudo apt-get remove python3-pip 再重新安裝 sudo apt-get install python3-pip 測試:輸入 pip3 -V之後出現問題 Traceback (most recent c
成功解決pyinstaller打包AttributeError:type object pandas._TSObject has no attribute _reduce_cython_
解決問題pyinstaller打包出現AttributeError:type object pandas._libs.tslibs.conversion._TSObject has no attribute _reduce_cython_解決方法1、先嚐試隱藏模組的方法pyi
【pycharm】pycharm上安裝tensorflow,報錯:AttributeError: module 39;pip39; has no attribute 39;main39; 解決方法
pycharm上安裝tensorflow,報錯:AttributeError: module 'pip' has no attribute 'main' 解決方法 解決方法: 在pycharm的安裝目錄下,找到helpers/packaging_tool.py檔案,
解決pycharm問題:module 39;pip39; has no attribute 39;main39;
pycharm 技術 pip module png 分享 gin 修改 img 問題 更新pip之後,Pycharm安裝package出現如下報錯: 解決 找到安裝目錄下 helpers/packaging_tool.py文件,找到如下代碼: 修
AttributeError: module 39;pip39; has no attribute 39;main39;如何解決
由於pip 10版本中沒有main(),如果在不降級的情況下,修改這個檔案 C:\Program Files\JetBrains\PyCharm Community Edition 2017.3.3\helpers\packaging_tool.py(在你pycharm的安裝路徑裡找)
Pycharm安裝模組提示module 39;pip39; has no attribute 39;main39;的問題 解決pycharm問題:module 39;pip39; has no attribute 39;main39;
解決pycharm問題:module 'pip' has no attribute 'main' 轉自: 《解決pycharm問題:module 'pip' has no attribute 'main'》 http://www.cnblogs.com/Fordestiny/p/8901100.htm
創建django項目出現AttrbuteError module 39;pip39; has no attribute 39;main39;解決方法
python -- alt tee nal internal import ring 兩種 由於升級pip到10.0,創建django出現AttrbuteError module ‘pip‘ has no attribute ‘main‘錯誤,解決方法有兩種 一:找到/Ap
解決 pip attributeerror 39;nonetype39; object has no attribute 39;bytes39;
pip nonetype bytes inux net error err tee pre for Windows : python -m pip install -U pip for Linux : pip install -U pip解決 pip attributeer
成功解決AttributeError: module 39;tensorflow.contrib.data39; has no attribute 39;TextLineDataset39;
解決問題 AttributeError: module 'tensorflow.contrib.data' has no attribute 'TextLineDataset' 解決思路 tensorflow版本問題導致的函式呼叫有變更。 (1)、tf.data.TextLineDa
問題解決:AttributeError: 39;module39; object has no attribute 39;_rebuild_tensor_v239;
於訓練模型時使用的是新版本的pytorch,而載入時使用的是舊版本的pytorch。 解決辦法: 升級pytorch 看起來理所當然,其實有可能有坑。說不定還要轉回來。 橋接 在程式開頭新增下面的程式碼,即可以使老版本pytorch相容
Python:AttributeError: module 39;pip39; has no attribute 39;pep425tags39;
之前安裝pyhook時,python是3.6.0版本的了,pyhook也是cp36的了怎麼還是報錯 百度說在shell: import pip;print(pip.pep425tags.get_supported()) 此時報錯: At
轉載:pycharm 安裝第三方庫報錯:AttributeError: 39;module39; object has no attribute 39;main39;
安裝第三方庫報錯:AttributeError: 'module' object has no attribute 'main' 出現以上問題主要是由於pip升級到 10.0.1 之後 老版的pycharm 使用pip安裝第三方庫的時候會報錯: 其主要原因是 新版的 pip 更改了 部分a
在Pycharm中出現“pip has no attribute 39;main39;”問題的解決
在使用Pycharm中的setting來安裝包的時候,出現如標題的報錯。我就有點納悶了,上網找解決方案,能夠這樣解決 1.首先,這個是Pycharm的問題,在Pycharm的安裝目錄下面的helpers資料夾下找到packaging_tool.py,並開啟 然後,找到下面的程式碼段:
Python問題 : AttributeError: 39;module39; object has no attribute 39;SSL_ST_INIT39; 解決辦法
pip安裝paramiko包的時候未報錯,但執行pip list | grep paramiko時候報錯如下: $ pip list | grep paramiko Traceback (most recent call last): File "/usr/local/bin/pip
AttributeError: 39;module39; object has no attribute 39;urlopen報錯解決辦法
AttributeError: ‘module’ object has no attribute 'urlopen 在python3中此處的urllib都應該改成urllib.request python NameError: name ‘raw_input’ is not define
關於celery的bug解決方法:AttributeError: module 39;celery_tasks39; has no attribute 39;celery39;
最近寫程式碼突然出現了關於celery屬性出錯的問題,在網上查了很久也沒有找到解決方法,後來重新檢查程式碼才發現是程式碼的寫錯誤了。 Bug截圖 解決方法 檢查程式碼是否出錯: 錯誤程式碼:celery -A celery_tasks worker -l info
解決window7 x64位Anaconda啟動報錯:AttributeError: 39;_NamespacePath39; object has no attribute 39;sort39;
tools 詳細 官網 rec tro pytho context object led 最近論文需要用到python做數據分析,python語法簡單,但是Windows下安裝第三方包惡心的要命,statsmodels用pip死活安裝不上,網上查了說包相互依賴windows