Is RASTERSTATS compatible with python 3.8? - python-3.x

Rasterstats library (computes statistic on raster file/object) is only compatible with python 2.7 to 3.6 according to setup.py
But in fact, according to my experience, it's compatible with python 3.7
Does anybody knows if it's compatible with python 3.8 also ?

Rasterstats was updated 2 hours prior to your question being asked here to formally declare support for Python 3.6 thru 3.9.
See commit aa4130e2ea03c9227b6793b7fe94adb9485bcb58, which resolved Issue 240.

Related

mac os x python different version uninstalling

Lately when I typed "python" in Terminal i saw that much python versions:
That much options
I wanted only 3.8 installed so I'm trying to uninstall everything else
I had these 2 paths where python was installed:
/Library/Frameworks/Python.framework/Versions (3.4, 3.5, 3.8)
/Library/Python (2.7)
In my Application directory I have only Python 3.8, so i moved 3.4 and 3.5 folders to Trash
Then the list of version became smaller
Only 2.7 and 3.8 Python left
When I move /Library/Python (2.7) nothing seems to happen, I continue to see 2.7 in Terminal
So the question is: how do I remove Python 2.7?

How to change Gurobi default python version 2.7.8 to my already installed Python version 3.5 Windows64 (in Spyder)

I know that there are many posts on how to change your default Python version but none refer to Gurobi recognizing the correct version.
When I open Spyder, Python 3.5 is my default.
How do I get my Gurobi 6.5.2 win64 (which now supports Python 3.5 on Windows64, see link),
to recognize my Python 3.5 as default and not Python 2.7.8?
Judging from this tutorial, you need to point pysetup to the location of your Python installation, i.e., the Python 3.5 folder you want.

Fuzzy - NYSIIS python 3

fuzzy.c:1635:5: error: too few arguments to function 'PyCode_New'
I am upgrading from python 2.7 to 3.2. I am getting an error in the c-compile of the fuzzy library (that apparently isn't Python 3 compatible).
Any suggestions? Is there an alternative to the NYSIIS encoding?
Thanks
Jellyfish supports Python 3.3 and 3.4.

Where on Earth is the numpy download for python 3.x?

Where on Earth is the download for numpy for python 3.x? I realize there is already a question like this here, but that was 3 years ago and all the links are outdated or dead. I've found tons of downloads saying they are for python 2.7 like this, but none for python 3. Am I just missing something obvious?
I think you're in the correct place - http://sourceforge.net/projects/numpy/files/NumPy/1.7.2/ - in the same directory is a link to numpy-1.7.2-win32-superpack-python3.3.exe/download
NumPy 1.7.2 Release Notes ************* This is a bugfix only release in the 1.7.x series. It supports Python 2.4 - 2.7 and 3.1 - 3.3 and is the last series that supports Python 2.4 - 2.5.
Or you can get pre-compiled windows binaries here - http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
http://sourceforge.net/projects/numpy/files/ has several Python 3 binaries (for recent versions). So does http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy. Running easy_install numpy or pip install numpy should also work. Downloading the source and running its setup.py with any supported Python version should work as well.

Py3k and IPython

I'm moving on up to Python 3, but can't seem to find an IPython release for it. The main IPython release page doesn't list anything appropriate. Any help in getting IPython working for Py3k would be much appreciated.
See the ipython dev mailing list
EDIT : see the Ipython 3 page - where now (Jan 2011) it says there is a version for python 3 in source code version only
EDIT: and now iPython supports python 3 directly.
Python 3 support has been around for a fairly long time now. You don't need a different version. IPython supports modern versions of Python 2 and 3. You just run IPython with the appropriate interpreter, python3 ipython.py. You can install IPython on Python3 by running setup.py with your Python3 interpreter.

Resources