How to package django

Asked 2 years ago, Updated 2 years ago, 39 views

I don't know how to package django I learned it from the recommended places I don't know how to use the package or library, so even if I look it up on YouTube, I don't know at all because they're all foreign Is there a separate Python and django packages? I don't know if you use pip in the power shell Please explain the package briefly

python django

2022-09-22 08:28

2 Answers

This package is installed with a long height pip.

pip install django

If you do this, the vault is installed.

There may be dependencies in other packages. Dependencies can be understood as things that need to be pre-installed to use the package. Some packages return with Django installed, and others do not. But if you install it with a pip, it's all packages that you can use on Python.

If you find the package you want, you can install it using pip install package name.

For example, This question uses a package that parses HTML called Beautiful Soup. If you type pip install beautifulsoup4 in the command line (power shell if it's a window), it will be installed. Then you can call it up and use it like from bs4 import Beautiful Soup.


2022-09-22 08:28

If you're using Faicham, go to File->Settings->ProjectInterPrinter and you'll find the + button.+ You can click the button to search for and install packages.


2022-09-22 08:28

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.