To install package add it in Pipfile to package's group:
*```[packages]``` - for minimally required packages
*```[dev-packages]``` - for development-only packages (test-requirements)
If you don’t have any specific version requirements for your dependencies, you can use the wildcard character * to tell Pipenv that any version can be installed:
```
[packages]
numpy = "*"
```
If you want specify exact versions of requirements:
```
[packages]
numpy = "==1.14.1"
```
To specify greater than or equal version requirement:
```
[packages]
numpy = ">=1.14.1"
```
After adding package to Pipfile, you should update Pipfile.lock file in appropriate directory:
```
pipenv lock
```
You can set PIPENV_IGNORE_VIRTUALENVS=1 to force pipenv to ignore that environment and create its own instead with required python version.