The package manager in Project Interpreter doesn't appear to have any way for me to run a pure pip command so I'm unable to install the wheel as I normally would through command line.
Running through command line installs the wheel on my base python install and not the virtualenv. Help?
The whl file (opencv package) is in c:\SmartSight\OPCV:
My environment is Windows 7 and Python 2.7.12.
Steps to install whl packages into venv:
mysqlclient‑1.3.13‑cp27‑cp27m‑win32.whl
toC:\Root\python\whls\mysqlclient‑1.3.13‑cp27‑cp27m‑win32.whl
To install via your command line, and avoid installing on your base Python, you'll have to first activate the
virtualenv
.You can do this on POSIX using:
And then for Windows systems:
You can then install the
.whl
file withpip install filename.whl
while the virtual env has been activated.You can install it from PyCharm's Python console with the pip module :