Moving PyCharm to a new PC

已回答

I am sure someone has run into this before, but I can't find any clear answers just by searching.

I have a new PC that I would like to move my pythonProject in PyCharm from my old PC. What is a step-by-step process to do this? Is there one?

Thank you!

0

The best approach is to set up a project in a version control system (VCS), such as GitHub, and upload all your project files there - https://www.jetbrains.com/help/pycharm/github.html

As for environment packages and dependencies, the ideal method is to create a requirements.txt file (using pip freeze > requirements.txt) and then download the packages to your new environment as described here.

One additional note, in case you also want to import your settings you may use Settings Sync 

0

请先登录再写评论。