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.
Tag: anaconda
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
How can I create the minimum size executable with pyinstaller?
I am on Windows 10, I have anaconda installed but I want to create an executable independently in a new, clean minimal environment using python 3.5. So I did some tests: TEST1: I created a python script test1.py in the folder testenv with only: Then I created the environment, installed pyinstaller and created the executable And it creates my test1.exe
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)
Tensorflow on windows – ImportError: DLL load failed: The specified module could not be found
I’m using Anaconda 3.1.0 on Windows 7 64 bit. I have installed tensorflow(GPU). I am getting errors while running following command. >>> import tensorflow as tf The complete traceback Answer cudnn lib version was wrong, so I replaced correct version of cudnn lib and it worked.
PyInstaller with Pandas creates over 500 MB exe
I try to create an exe file using PyInstaller 3.2.1, for test purpose I tried to make an exe for following code: After considerable amount of time (15mins +) I finished with dist folder as big as 620 MB and build – 150 MB. I work on Windows using Python 3.5.2 |Anaconda custom (64-bit). Might be worth noting that in
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