cseligman
cseligman

Reputation: 1

Cannot import anything from lasagne-0.1

I have just installed both Theano and Lasagne using conda for Theano and pip for Lasagne. Both reside in subdirectories under " C:\Users\chets\anaconda3\envs\tensorflow\Lib\site-packages". The following code works:

import theano

The following code does not:

import lasagne  

The error message for the latter is: "import lasagne Traceback (most recent call last):

File "C:\Users\chets\AppData\Local\Temp/ipykernel_5612/2601130582.py", line 1, in import lasagne

File "c:\Users\chets\anaconda3\envs\tensorflow\lib\site-packages\lasagne_init_.py", line 19, in from . import layers

File "c:\Users\chets\anaconda3\envs\tensorflow\lib\site-packages\lasagne\layers_init_.py", line 7, in from .pool import *

File "c:\Users\chets\anaconda3\envs\tensorflow\lib\site-packages\lasagne\layers\pool.py", line 6, in from theano.tensor.signal import downsample

ImportError: cannot import name 'downsample' from 'theano.tensor.signal' (c:\Users\chets\anaconda3\envs\tensorflow\lib\site-packages\theano\tensor\signal_init_.py)"

Upvotes: 0

Views: 349

Answers (1)

user11530462
user11530462

Reputation:

checked in Colab ,was getting different but similar error .Then ,I followed instructions from their lasagne github link after which it vanished .Here is the proper way install to lasagne

pip install -r https://raw.githubusercontent.com/Lasagne/Lasagne/master/requirements.txt
pip install https://github.com/Lasagne/Lasagne/archive/master.zip

attaching gist for reference.

Upvotes: 0

Related Questions