Ran
Ran

Reputation: 725

Could not find a version that satisfies the requirement UnityEngine

Am working on Python 2.7.14 and I want to use UnityEngine, to run my script from Unity, when I try to install it with pip : pip install UnityEngine, this error come up:

`Could not find a version that satisfies the requirement UnityEngine (from versions: )
No matching distribution found for UnityEngine` 

How can I fix this? Can anyone help me with this please? PS: Am working on windows

Upvotes: 1

Views: 742

Answers (1)

phd
phd

Reputation: 94963

There is no UnityEngine at PyPI (i.e. the package does not exist so cannot be pip installed).

May be you need http://forum.unity3d.com/threads/86461-Python-interpreter-in-Unity or https://github.com/exodrifter/unity-python but they're not pip-installable.

Upvotes: 0

Related Questions