Add note, conda, and rearrange some items

pull/3210/head
Kamran Ahmed 2 years ago
parent abb9209577
commit ab8b6a1125
  1. 4
      content/roadmaps/108-python/content-paths.json
  2. 4
      content/roadmaps/108-python/content/100-roadmap-note.md
  3. 9
      content/roadmaps/108-python/content/105-python-package-managers/102-conda.md
  4. 3314
      public/project/python.json

@ -35,6 +35,7 @@
"python-package-managers": "/roadmaps/108-python/content/105-python-package-managers/readme.md",
"python-package-managers:pypi": "/roadmaps/108-python/content/105-python-package-managers/100-pypi.md",
"python-package-managers:pip": "/roadmaps/108-python/content/105-python-package-managers/101-pip.md",
"python-package-managers:conda": "/roadmaps/108-python/content/105-python-package-managers/102-conda.md",
"python-frameworks": "/roadmaps/108-python/content/106-python-frameworks/readme.md",
"python-frameworks:fastapi": "/roadmaps/108-python/content/106-python-frameworks/102-fastapi.md",
"python-frameworks:synchronous": "/roadmaps/108-python/content/106-python-frameworks/100-synchronous/readme.md",
@ -50,5 +51,6 @@
"python-testing:unittest-pyunit": "/roadmaps/108-python/content/107-python-testing/100-unittest-pyunit.md",
"python-testing:pytest": "/roadmaps/108-python/content/107-python-testing/101-pytest.md",
"python-testing:doctest": "/roadmaps/108-python/content/107-python-testing/102-doctest.md",
"python-testing:nose": "/roadmaps/108-python/content/107-python-testing/102-nose.md"
"python-testing:nose": "/roadmaps/108-python/content/107-python-testing/102-nose.md",
"python-roadmap-note": "/roadmaps/108-python/content/100-roadmap-note.md"
}

@ -0,0 +1,4 @@
# Note
This roadmap specifically covers **Python and the ecosystem** around it. You will notice that it is missing things like version control, databases, software design, architecture and other things that are not directly related to Python; this is intentional. Have a look at the [Backend Roadmap](/roadmaps/backend) for a more comprehensive overview of the frontend ecosystem.

@ -0,0 +1,9 @@
# Conda
Conda is an open source package management system and environment management system that runs on Windows, macOS, and Linux. Conda quickly installs, runs and updates packages and their dependencies. Conda easily creates, saves, loads and switches between environments on your local computer. It was created for Python programs, but it can package and distribute software for any language.
Conda as a package manager helps you find and install packages. If you need a package that requires a different version of Python, you do not need to switch to a different environment manager, because conda is also an environment manager. With just a few commands, you can set up a totally separate environment to run that different version of Python, while continuing to run your usual version of Python in your normal environment.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://docs.conda.io/en/latest/'>Conda Docs</BadgeLink>

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save