Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 months ago.
Improve this question
I am taking an info storage and retrieval class, and to complete an assignment we need to download and use the beautifulsoup package for python. I haven't used Python in years, so I'm very rusty and cannot seem to figure out how to download a Python package. I'm using Python 3 and have Windows 10.
you can use pip install beautifulsoup4
Make sure that you have the Python executable in your environment variable Path.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 months ago.
Improve this question
I am coding python script using vscode
with extensions of Python and Pylance. I met a problem as the picture below
there are two same resolution results at the same time,
and not only for the import;
any other place like resolving variables, modules and functions,
there are always two same results.
If forbidding Pylance, there will be no resolution.
So I wonder how to fix this problem.
Upgrade the Jupyter extension to the pre-release version.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
is there a way to download the very first version python. Can you please provide a link
I am trying to search for it. And am unable to find it I need it for educational purposes
You can get all python versions from the python website. Here is a link to download python version 1.6.1
https://www.python.org/download/releases/1.6.1/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I'm looking for a tool, script, site or whatever else that show me a list of github prjects (possibly ordered by popularity) that exploit a python package. In my case I want to find all projects that exploit Unidecode python pacakge.
You can find them in the right sidebar under Used by here:
https://github.com/avian2/unidecode/network/dependents?package_id=UGFja2FnZS01MjY3ODE4OA%3D%3D
GitHub has this functionality built in. Under Insights > Dependency Graph > Dependents you can see all GitHub projects that declare a certain package as a dependency in their setup.py. In the case of Unidecode the list can be found here.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I've made a python module myself and I would like to make it accessible online (without having to create a website). Do you know any website that collects user-created modules that can be accessed by everyone for import? And if so, what is the process needed to upload it?
You are thinking on PyPi
What is PyPI?
The Python Package Index is a repository of software for the Python programming language. There are currently 83402 packages here.
You can learn about it here: How to submit a package to PyPi
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to replace python 2.7 by 3.5 on Redhat 6.5. Will it cause any problem?
My recommendation is not to replace but install your new python besides old one. just download and compile new python and at last run make altinstall. this will keep your main python and new one together.
Check This link for complete description: