# How can I install and import other modules inside pvpython?

**URL:** https://discourse.paraview.org/t/how-can-i-install-and-import-other-modules-inside-pvpython/3067
**Category:** Development
**Created:** [November 28, 2019, 2:00pm UTC](https://discourse.paraview.org/t/how-can-i-install-and-import-other-modules-inside-pvpython/3067 "2019-11-28T14:00:45Z")
**Posts on this page:** 1
**Showing post:** 6

<div class="post-metadata">

### Author: ![sharaborin](https://discourse.paraview.org/letter_avatar_proxy/v4/letter/s/9de053/32.png) [@sharaborin](https://discourse.paraview.org/u/sharaborin)
#### Post date: [January 10, 2021, 11:13pm UTC](https://discourse.paraview.org/t/how-can-i-install-and-import-other-modules-inside-pvpython/3067/6 "2021-01-10T23:13:37Z")

</div>

It can be done easier:  
after installation of appropriate python

> pyver=3.7.4  
> wget [https://www.python.org/ftp/python/${pyver}/Python-${pyver}.tgz](https://www.python.org/ftp/python/$%7Bpyver%7D/Python-$%7Bpyver%7D.tgz)  
> tar xzvf Python-{pyver}.tgz cd Python-{pyver}  
> ./configure --prefix=$HOME/.local  
> make  
> make install

it needs to define PYTHONPATH as follows:  
export PYTHONPATH=$HOME/.local/site-packages

install necessary packages, that is all  
BR,  
Evgeii

---

_[View the full topic](https://discourse.paraview.org/t/how-can-i-install-and-import-other-modules-inside-pvpython/3067)._
