Cannot install scipy in python 2.7 - scipy

When i try to install SciPy, the installer starts running but says it cannot install because it cannot detect python 3.4. But as far as i know, SciPy has support for Python 2.7.
Any help will be appreciated.

Related

Having proplem with Python 3.5 after installing Python 3.7

I had Python 3.5 on Ubuntu 16.04 and then I installed Python 3.7 and made it the default Python.
Now most of the programs I run go Python 3.7 but some run on 3.5 (I don't know why).
Also, the system says that there is a problem with python 3.5 but I can't figure what it is.
Can anyone help?
Thank You
Configure PYTHON_PATH pointing proper library path or set path environment variable pointing to correct Python version.

Installing tesseract 3.04 on lubuntu 18.04

I want to install tesseract-ocr 3.04 on one of my Ubuntu/Lubuntu 18.04 test setups (which is running fine on our lubuntu16.04 test setups). If I simply install tesseract-ocr via 'sudo apt install tesseract-ocr' etc. it will install tesseract 4.0.0 beta.
With this I am seeing a lot of weird behavior and would like to run tesseract-ocr 3.04 with the same traineddata etc as it is running fine on our older test setups.
How can I force to install an older version of tesseract-ocr.
Thanks, Martin
Download Tesseract 3.04 from https://launchpad.net/ubuntu/+source/tesseract/3.04.01-6.
Then to install it in $HOME/local:
./autogen.sh
./configure --prefix=$HOME/local/
make
make install
I realise this post is quite old, so if you have found a better way please share your method.

Install psycopg2 on Windows 8.1

I want to install psycopg2 on Windows 8.1 x64 computer and I'm using python 2.7.6 from python.org. As I launch the installer as administrator, I got this error,
I press confirm and next button, but I can't choose or type my python directory.
I have seen this post after I got those problem, Psycopg installation on windows, but it seems that that is a different case as mine.
How to successfully install psycopg2 on Windows 8.1 x64 computer?
Install the binary distribution of psycopg2 for the same architecture as your Python version.
Your Psycopg2 architecture must match the architecture of the Python binary you installed. So if you have a 32-bit Python 2.7 you must get the 32-bit psycopg2; if you have the 64-bit Python 2.7, you must get the 64-bit pycopg2.
This applies to any Python module that contains binary modules, not just psycopg2.

Python 3.x on Canopy Express

Are there any issues with installing Python 3.3 after installing Canopy Express (which has Python 2.7)? I recently installed Canopy to take advantage of the packages it bundles. I see that it has uses version 2.7 of python, but I would very much like to use the latest and greatest version of Python as I am new to python and just learning it. However I would like to make sure that installing Python 3.3 doesn't break any of the features of Canopy.
You can install Python 3 in parallel to Canopy, but you will not be able to run Canopy on Python 3.

Satchmo install on a mac using virtualenv

I have virtualenv set up and working correctly on my mac os (leopard) running python 2.6 & django 1.2.3. I want to install Satchmo but I haven't found solid instructions for a mac install using virtualenv. Can anyone help regarding this? thanks.
If you're using buildout with virtualenv then try this: https://github.com/shywolf9982/satchmo-buildout
Of course installing newest XCode ie. 3.1 or 3.2 is a must..
Unfortunatelly compiniling stuff on Mac can give you the creeps... My collegue and I, were fighting 12h with installation of geodjango on Spatialite database, and we didn't make it after all :)
If you're not using buildout then just use macports for installing modules listed in above repo's buildout.cfg file.
Good luck!
This Satchmo Project post contains the instructions I follow on Snow Leopard. I use Homebrew and/or MacPorts in lieu of the Debian package tools.