How to install pycharm on a 32-bit operating system

Having a hard time on installing pycharm on my antique laptop. Have downloaded many versions to no avail, is there any help or advice from the community? Thanks

0

For 32-bit OS you're limited with PyCharm 2018. 2019 requires 64-bit OS.

You can download 2018.3.7 here: https://www.jetbrains.com/pycharm/download/other.html

7

How can i install pyCharm on a 32 bits windows 10?

 

0

Please download PyCharm 2018.3 here  https://www.jetbrains.com/pycharm/download/other.html and walk through the installation process.

Should you have any questions please let me know. 

 

1

I COULD NOT DOWNLOAD PYCHARM MY LAPTOP IS OLD WITH 32 BITS 2018.3 DID NOT WORK how can I solve this

 

0

Starting from version 2019.1, PyCharm use JDK 11 which is officially not supported on 32 bit operating systems.

The latest version supported for 32 bit OS is 2018.3.7 which can be downloaded from https://www.jetbrains.com/pycharm/download/other.html

If you can't install or run 2018.3.7, please provide more information about the issue - errors, screenshots, steps taken, e.t.c.

0

Hey!

I installed the 2018.3.7 and I followed the installation instructions. However, I am still getting the same error (No JDK found. Please validate either PYCHARM_JDK, JDK_HOME or JAVA_HOME environment variable points to valid JDK installation). I also noticed that the environment variables mentioned in the error message do not exist. I am using Ubuntu 16.04 on an (i686 arch).

This is the output after using lscpu command

 

Architecture: i686
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 1
Core(s) per socket: 4
Socket(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 23
Model name: Intel(R) Core(TM)2 Quad CPU Q8400 @ 2.66GHz
Stepping: 10
CPU MHz: 1999.877
CPU max MHz: 2670.0000
CPU min MHz: 2003.0000
BogoMIPS: 5333.07
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 2048K

0

Hello, 

 

Please check https://intellij-support.jetbrains.com/hc/en-us/articles/206544879 and try manually editing pycharm.sh as described in section for Linux. 

0

You should run PyCharm via pycharm.exe, not pycharm64.exe. If it still doesn't work, check if you have a jre32 directory in your <PyCharm installation folder>https://i.imgur.com/5o02A8g.png
If you see only jre64, then you need to reinstall PyCharm and during installation choose the option Download and install JRE x86 by JetBrainshttps://i.imgur.com/9GYvExt.png
When reinstalled - try again to run the pycharm.exe file.

0

Hi, could someone please help me??  Regarding PyCharm version  2018.3.7  which I have successfully downloaded and installed on my 32bit Windows 10  however I am running into a problem when trying to create a New Project where PyCharm pops open a prompt window (ok/cancel) titled:

"Failed to Create Interpreter" with this detail:

Executed command:
C:\Users\Adam\AppData\Local\Temp\tmprnq4j0x2pycharm-management\virtualenv-16.0.0\virtualenv.py
C:\Users\Adam\PycharmProjects\MyTest\venv

Error occured:
TypeError: expected str, bytes or os.PathLike object, not NoneType

Command output:
Using base prefix 'C:\\Users\\Adam\\AppData\\Local\\Programs\\Python\\Python311-32'

C:\Users\Adam\AppData\Local\Temp\tmprnq4j0x2pycharm-management\virtualenv-16.0.0\virtualenv.py:1041: DeprecationWarning: the imp module is deprecated in favour of importlib and slated for removal in Python 3.12; see the module's documentation for alternative uses
  import imp
Traceback (most recent call last):
  File "C:\Users\Adam\AppData\Local\Temp\tmprnq4j0x2pycharm-management\virtualenv-16.0.0\virtualenv.py", line 2343, in <module>
    main()
  File "C:\Users\Adam\AppData\Local\Temp\tmprnq4j0x2pycharm-management\virtualenv-16.0.0\virtualenv.py", line 703, in main
    create_environment(home_dir,
  File "C:\Users\Adam\AppData\Local\Temp\tmprnq4j0x2pycharm-management\virtualenv-16.0.0\virtualenv.py", line 925, in create_environment
    py_executable = os.path.abspath(install_python(
                                    ^^^^^^^^^^^^^^^
  File "C:\Users\Adam\AppData\Local\Temp\tmprnq4j0x2pycharm-management\virtualenv-16.0.0\virtualenv.py", line 1134, in install_python
    copy_required_modules(home_dir, symlink)
  File "C:\Users\Adam\AppData\Local\Temp\tmprnq4j0x2pycharm-management\virtualenv-16.0.0\virtualenv.py", line 1064, in copy_required_modules
    dst_filename = change_prefix(filename, dst_prefix)
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\Adam\AppData\Local\Temp\tmprnq4j0x2pycharm-management\virtualenv-16.0.0\virtualenv.py", line 1023, in change_prefix
    filename = os.path.abspath(filename)
               ^^^^^^^^^^^^^^^^^^^^^^^^^
  File "<frozen ntpath>", line 573, in abspath
  File "<frozen ntpath>", line 540, in normpath
TypeError: expected str, bytes or os.PathLike object, not NoneType

I clicked ok and when I try to add py file to the project I see a message on the top saying "No Python interpreter configured for the project" and then tried the blue link option to "Configure Python interpreter" and tried changing it from <No interpreter> to the other option in the pulldown menu:  [unsupported] Python 3.1 C:\Users\Adam\AppData\Local\Programs\Python\Python311-32\python.exe  but that's the version that was automatically installed from  Python.org  so I'm not sure what I have done wrong.  Here's the full version detail of the installed Python 3.11.4 (tags/v3.11.4:d2340ef, Jun  7 2023, 05:30:09) [MSC v.1934 32 bit (Intel)] on win32

0
Python 3.11 is probably not compatible with such an old version as PyCharm 2018.3

Please try using the system interpreter or creating the virtualenv manually:

More information about creating and activating a python virtual environment in the terminal can be found at https://docs.python.org/3/tutorial/venv.html
0

请先登录再写评论。