Anaconda

Error w pip install openbabel: Failed to build openbabel

自作多情 提交于 2020-06-18 14:47:20
问题 Forgive me, I'm a chemist and not a programmer (but I'm working on it.) I'm at a very beginner level. I'm to install openbabel on my Mac for a project, but am having problems with installation. I'm doing pip install openbabel I'm getting an error: Collecting openbabel Using cached openbabel-2.4.1.tar.gz Building wheels for collected packages: openbabel Running setup.py bdist_wheel for openbabel ... error The error continues here. My research advisor had me install anaconda to hopefully remedy

Issues while installing utilities module in python

亡梦爱人 提交于 2020-06-18 10:37:10
问题 Am trying to install utilities module for both python and anaconda environment.I have python 3 in my Mac.Here is the error I get. pip install utilities Could not find a version that satisfies the requirement utilities (from versions: ) No matching distribution found for utilities Please help :( 回答1: There is no module named utilities in Python,I believe you have encountered importing a file called utilities.py by the line import utilities . Showing the full source code might help.

Issues while installing utilities module in python

吃可爱长大的小学妹 提交于 2020-06-18 10:36:25
问题 Am trying to install utilities module for both python and anaconda environment.I have python 3 in my Mac.Here is the error I get. pip install utilities Could not find a version that satisfies the requirement utilities (from versions: ) No matching distribution found for utilities Please help :( 回答1: There is no module named utilities in Python,I believe you have encountered importing a file called utilities.py by the line import utilities . Showing the full source code might help.

Can't install/update packages using pip or conda

感情迁移 提交于 2020-06-17 15:19:27
问题 I'm unable to install or update any package using the terminal using either pip or conda install/update. Also my anaconda navigator will not open. I believe I may have messed with my conda env somehow without realizing. I've tried restarting my computer and updating my MacOS. conda info active environment : base active env location : /Users/annaberman/anaconda3 shell level : 1 user config file : /Users/annaberman/.condarc populated config files : /Users/annaberman/.condarc conda version : 4.6

Stuck when setting up to use anaconda with VS Code and Integrated Git terminal

寵の児 提交于 2020-06-16 05:07:21
问题 I want to learn Data Science and so have used some really popular Python modules likes Pandas, Matplotlib, Numpy, etc. So I clean installed Anaconda and am now using it as my default Python interpreter and also using Conda for installing packages and making virtual environments. I use VS Code as my daily text editor. But I have run into some issues when using the integrated Git terminal in VS Code with the Anaconda Python interpreter. There are a couple of issues that I am facing. One of the

ERROR: Failed building wheel for pycryptodome

僤鯓⒐⒋嵵緔 提交于 2020-06-14 07:48:10
问题 I was trying to install pycryptodome , python-jose-cryptodome using pip within anaocnda3 environment. I got this error: ERROR: Failed building wheel for pycryptodome I have tried many versions many solutions(latest versions, specified version, with python 3.8 or 3.7, using requirements text without cache and even alone installation) but nothing worked for me :(. Any solution? 回答1: While using pip in an anaconda environment is allowed and fine, issues may arise when using pip and conda

Python is in conda env, but has not been activated in Windows virtual env

a 夏天 提交于 2020-06-14 04:32:15
问题 I created a Windows (10) Python virtual environment (env3.7.3). When I open a cmd window activated in the virtual env, I get the following warning message when starting Python in the virtual env: (env3.7.3) C:\Users\redex\OneDrive\Documents\Education\Machine Learning-Ng Python\Exercise7>python Python 3.7.3 (default, Apr 24 2019, 15:29:51) [MSC v.1915 64 bit (AMD64)] :: Anaconda, Inc. on win32 Warning: This Python interpreter is in a conda environment, but the environment has not been

Blender and conda

烂漫一生 提交于 2020-06-13 08:21:51
问题 I have installed Blender recently, and want to script with my conda libraries (Miniconda python 2.7) but conflicts occur due to Blender 2.77, and imports are not reachable. How to make this work? 回答1: Since v2.50 blender has used python 3.x. You should start by using the python3 version of miniconda to be able to use it within blender. For blender 2.77 python 3.5 is being used. You have several options for adding custom python modules to blender. Include all modules within the one folder for

urllib.error.URLError: <urlopen error unknown url type: https>

你。 提交于 2020-06-13 00:08:14
问题 Hello I am trying to learn web scraping. I installed Anaconda3 in Windows 10. Conda version 4.5.12. Python version 3.7.1. I wrote following script which produces the mentioned error. import bs4 from bs4 import BeautifulSoup as soup from urllib.request import urlopen as request with request('https://google.com') as response: page_html = response.read() page_soup = soup(page_html, "html.parser") print(page_soup) The error was from this line: with request('https://google.com') as response: ... .

Anaconda Navigator Jupyter and Spyder won't start after successful installation

被刻印的时光 ゝ 提交于 2020-06-12 16:43:03
问题 I have installed Anaconda 3 on Windows 10 64-bit. The installation completed successfully. I could start idle.exe and it works. I can start the Anaconda Powershell and Anaconda Prompt, but I cannot start the Navigator nor Spyer or Jupyter. Launching them from the start menu will bring up the Windows shell windows for a moment, before they disappear and nothing happens. I have tried starting the navigator from the Anaconda Prompt and this is what the error message looks like: (base) PS C: