I am not able to install "statsmodels" package through Pycharm. I tried command line installation as well, which still did not work. I am using Python 3.X version. Please could you help. I need the package direly. Sharing the installation error as well.
Thnx in adv.
Related
I have tried to install cvxpy and cvxopt both packages by using pip command the package was installed successfully but while running my code i'm getting error like CBC not installed inside "C:\Python\Python36\lib\site-packages\cvxpy\problems\problem.py". I tried with many solution but not working could anyone please help me. Thanks in advance.
I don't have enough enough reputation to add comments, so I will post this as an answer.
CBC requires cylp to be installed.
try
import cylp
if it throws error, install it using
pip install cylp
go through this link for more details
https://github.com/cvxgrp/cvxpy/issues/687
I am trying to install Pymesh on Python 3.6.
In my first try, I installed through pip, however it installed a wrong PyMesh than I wanted.
It installed the following, https://pypi.org/project/pymesh/, while I wanted https://pymesh.readthedocs.io/en/latest/
I uninstalled it, and tried installing the later PyMesh, however no luck. There were no instructions for windows. I downloaded the source from github. I extracted and pasted it in C:\Python36\Lib\site-packages
Then I ran python3 setup.py build - when an error showed up, I also tried python3 setup.py install, which worked. However, I am unable to do a simple basic command mentioned in the web page: https://pymesh.readthedocs.io/en/latest/basic.html
It is saying pymesh does not have module name load_mesh.
Looking for the process or thoughts on how to properly install pyMesh for Windows.
My go to solution for problems like this on Windows is always to try it in a conda env first. If that fails, use Docker.
I tried installing pandas on my windows 8 via the CMD but I get n error like
"python setup-py egg_info" failed: with error code 1 in C:\users\username\APP Data\Local\Temp\pip-build-cbdsd3_x\pandas
Any clue on how I can resolve this? Thanks
First you need to visit : http://www.lfd.uci.edu/~gohlke/pythonlibs/
then download numpy+mkl wheel file. Then you can install pandas
Try to install Anaconda for Windows. It comes with a lot of libraries. You can refer this for a detailed list of packages installed and instructions on how to install external packages.
I was having trouble installing SciPy, Pandas and a few other libraries. Instead of solving issues for every library, I think installing Anaconda is a far better option. Plus, it comes with Spyder(IDE) and Jupyter notebook and a lot more other tools.
I am quite newbie in python and I am trying to make the qfrm 0.2.0.27 library to work. Unfortunately there is no documentation about this library. I installed it using pip and when I try to import it I get the following error:
No module named 'qfrm.Options'
Does anyone have a solutions for this? I am using python 3.5.1. and PyCharm
I also ran into this problem. The current version in the PyPi index is qfrm-0.2.0.27.
The version on the website appears to be qfrm-0.2.0.23. Although it is older, it worked without error for me.
If you download the ...23 whl file and install that one (pip install [file_name].whl) you may find it works better.
I'm on Python version 2.7.11 and was unable to install qfrm version 0.2.0.27 and received the error message: No module named 'qfrm.Options'
However, I was able to install qfrm version 0.2.0.23, as follows: pip install -v qfrm==0.2.0.23
yagmail was working for me, this is the first time ive tried it since I upgraded to python 3.5, and it doesnt work. I uninstalled yagmail and tried to pip install it again but it showed me this error on no matching distribution found for win32ctypes?
http://imgur.com/nko5GRs
Any help will be appreciated. Thanks!
It seems to be a keyring issue. Probably they need to support windows for Python3.5
You could try to see if their most recent version on git works:
pip uninstall keyring
pip install git+https://github.com/jaraco/keyring.git
pip install yagmail
Let me know, and feel free to open a ticket on github as well.
Not sure if that would work: there are no issues for Python 3.5 on OS' other than Windows.