I am working with Neural Net implementation in nolearn.lasagne as mentioned here
However I get the following error:
ImportError: No module named 'cPickle'
I figure out that cPickle is pickle in python-3
Does nolearn/lasagne support python-3 ? If not, is there any workaround ?
You seem to be using an older version of nolearn. Try the current master from Github with these commands:
pip uninstall nolearn
pip install https://github.com/dnouri/nolearn/archive/master.zip#egg=nolearn
Here's the tests in master running with both Python 2.7 and 3.4: https://travis-ci.org/dnouri/nolearn/builds/61806852
Related
I am trying to run the PROJECT on my local machine on pycharm.
I am using Anaconda interpreter. and installed scikit-learn 1.2.0 version. Still, I am getting an error
__model = pickle.load(f)
ModuleNotFoundError: No module named 'sklearn.linear_model.base'
I have tried to solve using the existing answers answer1 on StackOverflow but none of them worked.
I tried to update the scikit-learn version but every time am getting errors.
sklearn.linear_model.base was deprecated in 0.22 and removed in 0.24.
Old pickle files are not guaranteed to be compatible with newer versions, so an old version of scikit-learn is probably needed. e.g.:
pip install scikit-learn==0.20.3
I want to import transformers in jupyter notebook but I get the following error. What is the reason for this error? My Python version is 3.8
ImportError: cannot import name 'TypeAlias' from 'typing_extensions'
I also updated the typing-extensions library version, but the problem was not resolved
You could try
pip install typing-extensions --upgrade
maybe the probelm is the version of datasets package:
pip install datasets==1.15
TypeAlias is available from python version 3.10.
You should upgrade your python version to avoid the error.
I am trying to run the command sudo python3 setup.py install in the research directory of TensorFlow models but I am getting the following error:
File "/tmp/easy_install-7odqdand/matplotlib-3.2.0rc3/setup.py", line 136
raise IOError(f"Failed to download jquery-ui. Please download "
^
SyntaxError: invalid syntax
What may be the problem?
You are likely using a version of python less than Python3.6.
f-strings are used and supported since then apparently.
https://github.com/matplotlib/matplotlib/issues/17075#issuecomment-611190672
If you don't want to upgrade python just upgrade matplotlib to version 2.1.0 which is the minimum requirement for tensorflow object detection API. I just did that and been able to install Tensorflow Object detection API on Ubuntu 16, which comes with python 3.5.
When trying to use yolo for python I followed https://github.com/thtrieu/darkflow I got flow installed using
pip3 install .
but then, when running
flow --h
I get
File "/home/computername/.local/lib/python3.5/site-packages/darkflow/net/help.py", line 9, in <module>
import cv2
ImportError: No module named 'cv2'
When I call python I get into python 3.6 and if the import cv2 it does not give any problem, i.e., cv2 is imported.
When calling
which python
I get
/home/computername/anaconda3/bin/python
So flow does call the wrong version python. I thought, maybe I should delete the python 3.5 version on my computer, but looking for how to do that I only find warnings that I should not do that.
So my question is: what to do such that it will work?
maybe other relevant information:
which pip3
/usr/bin/pip3
and (I tried to install flow with pip first, but that did not work)
which pip
/home/bombus/anaconda3/bin/pip
I am working on Ubuntu 16.04.3 LTS
I am using Python version 3.6, Django version 1.9 and wkhtmltopdf version 0.2. My Python is not GCC it's Anaconda3.
When running my project which uses wkhtmltopdf, following error will be thrown:
from main import WKhtmlToPdf, wkhtmltopd
ModuleNotFoundError: No module named 'main'
This is how I imported the wkhtmltopdf:
import pdfkit
from wkhtmltopdf.views import PDFTemplateView
Yes i got the answer. This error occurred because i didn't installed django-wkhtmltopdf.
installed >> `pip install django-wkhtmltopdf
I hope this answer will help to resolve the similar error.
after installing pdfkit with following command and pointing python version 3.8, i was able to get pdfkit working on mac
pip3 install pdfkit