Skip to content
Advertisement

Tag: anaconda

How to install Python packages in a specific environment?

I installed Anaconda3 so I can create environments and install different packages in each environment. But I fail to understand the difference between the Python in and I can seem to access Python 3.6.5 Anaconda from both, why is that? And, what is the difference between both? Furthermore, I would like to install packages to a single Python environment only.

Python not finding Tensorflow module under Anaconda

I’m a newbie trying to execute the code in first_steps_with_tensor_flow.ipynb locally on Windows 10. I have installed Anaconda Navigator 1.8.2, created an environment where I’ve installed, among others, tensorflow package. I then launch Visual Studio Code from Anaconda and run The last line is marked with red in VS Code, saying E0401:Unable to import ‘tensorflow.python.data’. Running, I get ModuleNotFoundError: No

Error creating anaconda python environment

Every time I try to create a new environment with anaconda in the Windows Command Prompt I get this error: I use this command to create the environment: Screenshot of error in command prompt Answer You are supposed to use a terminal not the Python interpreter to execute those commands. Search for terminal in search menu of you computer (cmd

Tensorflow import error: No module named ‘tensorflow’

I installed TensorFlow on my Windows Python 3.5 Anaconda environment The validation was successful (with a warning) Python 3.5.3 |Intel Corporation| (default, Apr 27 2017, 17:03:30) [MSC v.1900 64 bit (AMD64)] on win32 Type “help”, “copyright”, “credits” or “license” for more information. Intel(R) Distribution for Python is brought to you by Intel Corporation. Please check out: https://software.intel.com/en-us/python-distribution 2017-10-04 11:06:13.569696: W

Get the list of packages installed in Anaconda

Over a period of time, I have loaded a number of packages into the Anaconda I have been using. Now I am not able to keep track of it. How do we get a list of all packages loaded in Anaconda (Windows 10)? What is the command? Answer in terminal, type : conda list to obtain the packages installed using

Import error: DLL load failed in Jupyter notebook but working in .py file

I installed BreakoutDetection the module in Anaconda environment. When I tried to import the module using import breakout_detection in jupyter notebook, I get the below error I could import the same module in python shell I looked at the system paths (print sys.path) and in both python shell and jupyter notebook. They both are the same. Executable path (print sys.executable)

Switch between spyder for python 2 and 3

From what I have learnt in the documentation it states that you can easily switch between 2 python environments by just creating a new variable using command prompt “conda create -n python34 python=3.4 anaconda” if i already have python 2.7 installed. An environment named python 34 is created and we can activate it using “activate python 34” But all this

Advertisement