PyCharm Jupyter notebook No module named 'toolbox' - python

I am trying to install toolbox and it shows the below error. I already updated the setup-toolbox but I still get this error. Any help will be highly appreciated.
While installing toolbox from pycharm it shows this error:
FileNotFoundError:No such file or directory: 'C:\\Users\\abc\\AppData\\Local\\Temp\\pycharm-packaging\\toolbox\\setup.py'
Installing via command line it show:
Command "python setup.py egg_info" failed with error code 1 in C:\Users\abc\AppData\Local\Temp\pip-install-j5ja0k9r\toolbox\.

Try upgrading the console:
pip install -U jupyter_console
You can also download manually from here

Related

Spyder Console databricks not defined error

In anaconda spyder, I installed databricks-cli as below
pip install databricks-cli
After installation in c:\programdata\anaconda3\Scripts, databricks.exe is showing up; but, when I run command (databricks -version), it displays below error
NameError: name 'databricks' is not defined
Could you please advise?

ModuleNotFoundError: No module named 'word2vec'

Window 10
anaconda v5.0.1 -python v3.6.3 runs
jupyter v4.3.0 -python v3.6.3 runs
on cmd : C:\User\KRX>python --version
And I got > Python 3.5.6 :: Anaconda, Inc.
Hi, I had ModuleNotfoundError: No module named 'word2vec' after installing 'word2vec' following this procedure below.
1.download get-pip.py on https://bootstrap.pypa.io/get-pip.py. On cmd python get-pip.py
2.Install gensim in windows
On cmd: pip install scipy,
On cmd: pip install gensim
3.Install word2vec
On anaconda prompt: conda install -c anaconda word2vec
Until then, I had no problem but when I tried to import word2vec on jupyter notebook, I had ModuleNotfoundError as I already mentioned above.
I tried to reinstall 'word2vec' but I fell into another error :
ERROR conda.core.link:_execute_actions(337): An error occurred while installing package 'anaconda::tqdm-4.43.0-py_0'.
CondaError: Cannot link a source that does not exist. C:\User\KRX\Anaconda3\Scripts\conda.exe
Running 'conda clean --packages' may resolve your problem
I tried conda clean --packages but nothing changed
I also tried conda update anaconda and got same error (CondaError : Cannot link a source that does not exist...etc)
ps. This is my first time asking a question so if you need any other details please let me know. I thank y'all.

Command “python setup.py egg_info” failed with error code 1 when installing 'geopandas'

Having troubles installing geopandas into python using "pip install geopandas" which is returning "Command “python setup.py egg_info” failed with error code 1 when installing..." error.
I am using python 2.7.14.

Can't pip install mysql

I'm trying to connect to a mySQL server through python on a MacBook Pro, and I need to pip install mysql to continue. However when I run that command I get the following error:
ModuleNotFoundError: No module named 'ConfigParser'
---------------------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/jc/cn0mjt8s13jfb9w3f42qy27c0000gn/T/pip-install-viy629s3/MySQL-python/
Any ideas on how to get pass this would be greatly appreciated.

pip install returns code 1 error with saga_python. Any ideas?

I am trying to install saga-python (package for SAGA GIS) and cmd python keeps returning the same error: python setup.py egg_info failed with code 1 in C:\Users\MyUser\AppData\Local\Temp\pip-build-7uieglh9\saga-python. Any ideas why it occurs?
Also, tried a few tips from this question's answers:
Python pip install gives "Command "python setup.py egg_info" failed with error code 1" not working either.
Version is 3.5.2 and setuptools and ez_setup are allright.
Tried with easy_install as well. No results either, sais that the syntax is invalid.
Also tried with virtualenv and http://docs.python-guide.org/en/latest/dev/virtualenvs/. Error is caused by two different Python versions: 2.7 and 3.5.2. I cannot uninstall 2.7 (shell for some GIS software), but I need to make it work somehow.
This package only for python 2.X. See issue

Categories