Creating a development environment doesn't work as expected in doc
See original GitHub issueHello,
I need to create a development environment for Pandas ( https://github.com/pandas-dev/pandas/issues/9154#issuecomment-329795314 )
So I try to follow https://pandas.pydata.org/pandas-docs/stable/contributing.html#creating-a-development-environment
$ conda create -n pandas_dev python=3 --file ci/requirements_dev.txt
Fetching package metadata .........
PackageNotFoundError: Packages missing in current channels:
- moto
We have searched for the packages in the following channels:
- https://repo.continuum.io/pkgs/free/osx-64
- https://repo.continuum.io/pkgs/free/noarch
- https://repo.continuum.io/pkgs/r/osx-64
- https://repo.continuum.io/pkgs/r/noarch
- https://repo.continuum.io/pkgs/pro/osx-64
- https://repo.continuum.io/pkgs/pro/noarch
Pinging @jorisvandenbossche
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:9 (8 by maintainers)
Top Results From Across the Web
DOC: "Creating a Python environment" in "Creating a ... - GitHub
Suggested fix for documentation ... Include that errors during the installation process are expected due to currently unresolved dependency conflict (unless this ...
Read more >Pluralsight Tech Blog | Destroy Your Development Environment
If your development environment is fully automated such that you can (and do) destroy it daily, here is what you can expect: Whenever...
Read more >Setting up your development environment for the Moodle App
The suggested command does not work on Windows, so the solution is to manually check the ownership of all the files in C:\Users\{username}\....
Read more >gitflow - Why deploy to the development environment?
The build server establishes a new database, and the tests are responsible for seeding the necessary data for test execution. This is fine...
Read more >Build troubleshooting tips - Netlify Docs
Don't name your build command build or try to use the debug build steps to run a build locally in our production build...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
conda create -n pandas_dev python=3 -c conda-forge --file ci/requirements_dev.txt
should work for you.Hello everyone, I am new contributor to Pandas. In short, what should I do to solve the same problem stated in the first post? Thank you.