Multiple translators in one project?

I am working on a project that includes a scraping part and a web part. I use the scrapy framework for scraping, flash frames for the web.

Is it possible to configure PyCharm within the same project to use 2 interpreters, one 2.7 for the part for screening and one 3.x for the flask?

+5
source share
1 answer

Apparently, you can only have one interpreter in a PyCharm project, but you can open multiple projects . If you could split the code base into two projects, this would solve the problem.

+2
source

Source: https://habr.com/ru/post/1236974/


All Articles