「vscode 找不到numpy」的推薦目錄:
- 關於vscode 找不到numpy 在 コバにゃんチャンネル Youtube 的最佳貼文
- 關於vscode 找不到numpy 在 大象中醫 Youtube 的精選貼文
- 關於vscode 找不到numpy 在 大象中醫 Youtube 的精選貼文
- 關於vscode 找不到numpy 在 [問題] VS code 找不到library - 看板Python - 批踢踢實業坊 的評價
- 關於vscode 找不到numpy 在 The specified module could not be found) - Stack Overflow 的評價
- 關於vscode 找不到numpy 在 Python + VScode 開發環境安裝教學 - YouTube 的評價
vscode 找不到numpy 在 [問題] VS code 找不到library - 看板Python - 批踢踢實業坊 的推薦與評價
抱歉打擾各位
我目前作業環境為Ubuntu 16.04
套件用conda 管理
今天想要嘗試numpy-stl套件
下述範例讀取.stl檔
使用Vs code 卻有ImportError: No module named stl
但是我在vs code裡終端機裡打conda list有看到numpy-stl
所以我是那邊沒有設定好?
讀取範例程式碼:
from stl import mesh
from mpl_toolkits import mplot3d
from matplotlib import pyplot
# Create a new plot
figure = pyplot.figure()
axes = mplot3d.Axes3D(figure)
# Load the STL files and add the vectors to the plot
your_mesh = mesh.Mesh.from_file('/home/chen/sample3.stl')
axes.add_collection3d(mplot3d.art3d.Poly3DCollection(your_mesh.vectors))
# Auto scale to the mesh size
scale = your_mesh.points.flatten(-1)
axes.auto_scale_xyz(scale, scale, scale)
# Show the plot to the screen
pyplot.show()
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 140.125.96.131
※ 文章網址: https://www.ptt.cc/bbs/Python/M.1516631453.A.FFB.html
... <看更多>