OK I will try that. Meanwhile, I see that only three files are copied to /usr/local/
/usr/local/lib/python3.6/dist-packages/pyfr-1.7.5-py3.6.egg /usr/local/bin/pyfr /usr/local/bin/mako-render I guess that virtualenv (which you recommend) is a mean to install pyfr in a custom location. Am I right? If not, please let me know how to install in a custom loation rather than /usr/local Regards, Mahmood On Thu, Mar 22, 2018 at 2:52 PM, Abe, Yoshiaki <[email protected]> wrote: > There is no uninstall option. > You can manually remove files that are listed in: > $ python setup.py install --record files.txt > > I would recommend you to use virtualenv, which provide a separate > environment. > You can do like this: > $ python3 -m venv ./testenv > $ source ./testenv/bin/activate > (testenv)$ pip install --upgrade pip > (testenv)$ pip install pyfr > (testenv)$ pip install pycuda > > Regards, > Yoshiaki -- You received this message because you are subscribed to the Google Groups "PyFR Mailing List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send an email to [email protected]. Visit this group at https://groups.google.com/group/pyfrmailinglist. For more options, visit https://groups.google.com/d/optout.
