We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plain-old pip install pytides, as listed on the main page didn't work for me.
pip install pytides
I had to do a line like:
pip install git+https://github.com/sam-cox/pytides.git
... to get this to install.
Specifically, with Anaconda I set up a virtual environment like:
conda create -n pytides python=2 . activate pytides conda install numpy scipy matplotlib ipython pip install git+https://github.com/sam-cox/pytides.git
And then import pytides would work in ipython.
import pytides
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Plain-old
pip install pytides
, as listed on the main page didn't work for me.I had to do a line like:
... to get this to install.
Specifically, with Anaconda I set up a virtual environment like:
And then
import pytides
would work in ipython.The text was updated successfully, but these errors were encountered: