您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)python3.74運(yùn)行import numpy as np報(bào)錯(cuò)怎么辦的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
安裝完 anaconda
運(yùn)行如下代碼執(zhí)行不了
import numpy as np import os,sys #獲取當(dāng)前文件夾,并根據(jù)文件名 def path(fileName): p=sys.path[0]+'\\'+fileName return p #讀文件 def readFile(fileName): f=open(path(fileName)) str=f.read() f.close() return str #寫文件 def writeFile(fileName,str): f=open(path(fileName),'w') f.write(str) f.close() def str1(): str=','.join('我在中國(guó)大地上驕傲地生長(zhǎng)著!') return str def str2(): return str(np.random.randint(-49,50,[3,3,3])) #實(shí)驗(yàn)1 def test_1(): fileName='中國(guó)大地.txt' writeFile(fileName,str1()) list=readFile(fileName).split(',') print(list) #實(shí)驗(yàn)2 def test_2(): writeFile('str1',str1()) writeFile('str2',str2()) str_1=readFile('str1') str_2=readFile('str2') print(str_1) print(str_2) test_2()
提示如下錯(cuò)誤
Traceback (most recent call last):
File "F:\python\testfile.py", line 1, in <module>
import numpy as np
File "d:\ProgramData\Anaconda3\lib\site-packages\numpy\__init__.py", line 140,
in <module>
from . import _distributor_init
File "d:\ProgramData\Anaconda3\lib\site-packages\numpy\_distributor_init.py",
line 34, in <module>
from . import _mklinit
ImportError: DLL load failed: 找不到指定的模塊。
或者如下錯(cuò)誤
python3.7 -u "/Users/fukai/fk-test-python/l02/main.py"
控制臺(tái)報(bào)錯(cuò)
Traceback (most recent call last):
File "/Users/fukai/fk-test-python/l02/main.py", line 1, in <module>
import numpy as np
問題
1. anaconda 環(huán)境怎么解決這個(gè)問題呢
答案:經(jīng)過億速云小編的測(cè)試發(fā)現(xiàn)其實(shí)只要更新numpy模塊就可以了,可以通過如下兩種方式
conda update numpy
或pip install -U numpy
都可以實(shí)現(xiàn)更新。
更新以后,再執(zhí)行就正常了。
pip -i 和 -U 參數(shù)
例子:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U funcat
-i: 指定庫(kù)的安裝源
-U:升級(jí) 原來已經(jīng)安裝的包,不帶U不會(huì)裝新版本,帶上U才會(huì)更新到最新版本。
anaconda用法:
查看已經(jīng)安裝的包:
pip list 或者 conda list
安裝和更新:
pip install requests
pip install requests --upgrade
或者
conda install requests
conda update requests
更新所有庫(kù)
conda update --all
更新 conda 自身
conda update conda
更新 anaconda 自身
conda update anaconda
anaconda換源:
制定清華的源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
感謝各位的閱讀!關(guān)于“python3.74運(yùn)行import numpy as np報(bào)錯(cuò)怎么辦”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。