程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

解決:Python安裝Blitz的包後出現ModuleNotFoundError: No module named ‘blitz.modules‘錯誤

編輯:Python

問題描述:

源代碼如下:

import pandas as pd
import numpy as np
import torch
import torch.nn as nn
import torch.optim as optim
import torch.nn.functional as F
from blitz.modules import BayesianLSTM
from blitz.utils import variational_estimator
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler
from sklearn.linear_model import LinearRegression
import matplotlib.pyplot as plt
%matplotlib inline
from collections import deque

Python安裝Blitz的包後出現ModuleNotFoundError: No module named 'blitz.modules’錯誤

ModuleNotFoundError: No module named 'blitz.modules'

解決方案:

其實原因就在於安裝的方式不太對,需要直接在cmd中輸入:

pip install blitz-bayesian-pytorch

就可以完美解決該問題啦~~開心心~~~ヾ(◍°∇°◍)ノ゙(◕ᴗ◕*)

解決思路來源:

就是在百度上搜,然後看到一個網頁寫著Python包blitz-bayesian-pytorch 0.2.7,於是想到是不是自己的install內容不太對,果然pip install這個就對啦 開心~

參考文獻:

https://www.cnpython.com/pypi/blitz-bayesian-pytorch
https://blog.csdn.net/Dust_Evc/article/details/125325258
https://zhuanlan.zhihu.com/p/416872266


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved