Python Class-3 : Interpreter vs Compiler, Python History, Versions & Variations

Поделиться
HTML-код
  • Опубликовано: 17 окт 2024
  • Python Installation Video link: • P7 - Python 3.11.3 Ins...
    PyCharm Installation Video link: • P8 - PyCharm Installat...
    ⏰Timestamps:
    00:09 | Intro & Re-cap
    00:26 | Interpreter vs Compiler
    42:17 | Python History
    47:22 | Python Versions
    52:27 | Important points about the Python
    53:58 | Python Variations
    57:53 | Python Installation

Комментарии • 3

  • @lakshmanarao099
    @lakshmanarao099 3 дня назад

    can we run both Python(Cpython) and pypy in the same system without any conflicts? if so are there any best practices to manage them.

    • @AnilITEduTelugu
      @AnilITEduTelugu  2 дня назад +1

      you can run on the same system, but I haven't tried.
      Using pyenv:
      Installation: Install pyenv using a package manager or from the source.
      pyenv install 3.10.2pyenv install pypy3.8-7.3.7
      pyenv global 3.10.2 # Set CPython 3.10.2 as the global versionpyenv local pypy3.8-7.3.7 # Set PyPy for specific project directory
      Please try and let me know for any queries.

    • @lakshmanarao099
      @lakshmanarao099 День назад

      @@AnilITEduTelugu I've tested it, and we can run both Python (3.9.16) and PyPy (7.3.11) on the same system. Thanks for suggesting pyenv-it worked well.