分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!
problem: how to import numpy in subdirectory? import error of numpy within subfolder.
錯誤資訊:
>>> import numpytraceback (most recent call last): file "", line 1, in file "/usr/local/lib/python2.7/dist-packages/numpy/__init__.py", line 153, in from . import add_newdocs file "/usr/local/lib/python2.7/dist-packages/numpy/add_newdocs.py", line 13, in from numpy.lib import add_newdoc file "/usr/local/lib/python2.7/dist-packages/numpy/lib/__init__.py", line 18, in from .polynomial import * file "/usr/local/lib/python2.7/dist-packages/numpy/lib/polynomial.py", line 19, in from numpy.linalg import eigvals, lstsq, inv file "/usr/local/lib/python2.7/dist-packages/numpy/linalg/__init__.py", line 50, in from .linalg import * file "/usr/local/lib/python2.7/dist-packages/numpy/linalg/linalg.py", line 29, in from numpy.linalg import lapack_lite, _umath_linalgimporterror: libatlas.so.3gf: cannot open shared object file: no such file or directory
可能原因:
1. 子資料夾下有自己建的numpy.py檔案
2. 看最後一行的錯誤,找不到libatlas.so.3gf. 將其所在資料夾引入/etc/ld.so.conf,缺啥補啥
$ sudo gedit /etc/ld.so.conf
寫入/usr/lib/atlas-base
$ sudo ldconfig
see me @ rachel zhang :)
給我老師的人工智慧教程打call!
C 遍歷資料夾及其子檔案(夾)
c 遍歷資料夾及其子檔案 夾 如下 int finder lpctstr pstr 一般檔案及資料夾 printf d s n i finder.getfilename bool bisdir finder.isdirectory if bisdir else end while finder.cl...
刪除子資料夾
你是一位系統管理員,手裡有乙份資料夾列表 folder,你的任務是要刪除該列表中的所有 子資料夾,並以 任意順序 返回剩下的資料夾。我們這樣定義 子資料夾 如果資料夾 folder i 位於另乙個資料夾 folder j 下,那麼 folder i 就是 folder j 的子資料夾。資料夾的 路徑...
MFC 刪除具有子資料夾或資料夾內有子檔案的方法
比如我的d盤裡有乙個檔案d test,此時test為乙個空資料夾 建立此資料夾的方法為 createdirectory t d test null 刪除此空資料夾的方法為 removedirectory t d test 這只能刪除資料夾內毫無內容的空資料夾,不能刪除具有子資料夾或子檔案的資料夾.這...