Xyene / sphere2cube

Python script to map an equirectangular (cylindrical projection, skysphere) map into 6 cube (cubemap, skybox) faces.
https://pypi.python.org/pypi/sphere2cube
GNU Affero General Public License v3.0
92 stars 19 forks source link

install issue #7

Closed GR90 closed 4 years ago

GR90 commented 5 years ago

pip install sphere2cube win10,python3.4 3.7
1551945113

Toshiwoz commented 5 years ago

same problem here.

Toshiwoz commented 5 years ago

I figured out how to do the same using povray. So no hurry anymore.

sunguwei commented 5 years ago

same problem here, too

Xyene commented 5 years ago

This sounds like the package was incorrectly marked as Python 3-compatible, which it isn't due to ez_setup being Python 2-only. If you use a Python 2 install's pip, or do something like:

$ git clone https://github.com/Xyene/sphere2cube
$ cd sphere2cube
$ python setup.py develop

...that should also work, providing that python is a Python 2 version.

sunguwei commented 5 years ago

Got it, thanks very much!!!

mangorism commented 4 years ago

I can install sphere2cube with python2 ... but cann't install bpy(blender python) in python2..

I can install bpy in python3 but cann't install sphere2cube in python3....

how can I install both of them in windows...?

Xyene commented 4 years ago

Over a year later, I've updated this project to Python 3 :)

Never expected anyone to actually use this, and I haven't done graphics stuff in years, but felt it unfair to leave people hanging forever.