# An IDE interface for Windows 7

**URL:** https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317
**Category:** New to Julia
**Created:** [August 3, 2025, 1:19pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317 "2025-08-03T13:19:45Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 3, 2025, 1:19pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/1 "2025-08-03T13:19:45Z")

</div>

Hello,  
I managed to install Julia on Windows 7, but I’m having trouble setting up VSCodium 1.70.2:

```julia-auto
Trying to locate Julia binary...
Juliaup not found, locating Julia by other means.
No Julia executable was identified.
The current PATH environment variable is "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\VSCodium\bin,C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;;C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;C:\Users\vboxuser\AppData\Local\Programs\VSCodium\bin,C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin".
Trying to locate Julia binary...
Juliaup not found, locating Julia by other means.
Trying to locate Julia binary...
Juliaup not found, locating Julia by other means.
Trying to locate Julia binary...
Juliaup not found, locating Julia by other means.
No Julia executable was identified.
The current PATH environment variable is "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\VSCodium\bin,C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;;C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;C:\Users\vboxuser\AppData\Local\Programs\VSCodium\bin,C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin".
No Julia executable was identified.
The current PATH environment variable is "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\VSCodium\bin,C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;;C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;C:\Users\vboxuser\AppData\Local\Programs\VSCodium\bin,C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin".
No Julia executable was identified.
The current PATH environment variable is "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\VSCodium\bin,C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;;C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;C:\Users\vboxuser\AppData\Local\Programs\VSCodium\bin,C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin".

```

And:

 ![Capture-2](https://global.discourse-cdn.com/julialang/original/3X/3/e/3edf339c8d50a619f20e2d2bf1031d93ed547980.png)

I need an IDE that works on Windows 7.

Thank you.

---

<div class="post-metadata">

### Author: ![Maucejo](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/maucejo/32/39090_2.png) [@Maucejo](https://discourse.julialang.org/u/Maucejo)
#### Post date: [August 3, 2025, 6:49pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/2 "2025-08-03T18:49:23Z")

</div>

On windows, I usually add the path to the julia executable to the PATH variable (environment variables) and its works without any issue.

---

<div class="post-metadata">

### Author: ![GHTaarn](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ghtaarn/32/216007_2.png) [@GHTaarn](https://discourse.julialang.org/u/GHTaarn)
#### Post date: [August 4, 2025, 3:53am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/3 "2025-08-04T03:53:24Z")

</div>

I see that your PATH variable includes a comma (“,”). Try to replace this with a semicolon (“;”) and reboot if necessary.

---

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 4, 2025, 11:18am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/4 "2025-08-04T11:18:17Z")

</div>

Hello,  
The PATH variables are:

```julia-auto
C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;C:\Users\vboxuser\AppData\Local\Programs\VSCodium\bin;C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin

%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files\VSCodium\bin;C:\Users\vboxuser\AppData\Local\Programs\Julia-1.10.9\bin;%systemroot%\System32\WindowsPowerShell\v1.0\;C:\ProgramData\chocolatey\bin;C:\Program Files\VSCodium\bin

```

When I type **julia** in **CMD** and press Enter, the Julia environment opens. I got the following error:

 ![Capture-3](https://global.discourse-cdn.com/julialang/original/3X/4/0/409f3e09438e2fb16aa89c523076c3b34da05bed.png)

I changed the path to:

```julia-auto
C:\\Users\\vboxuser\\AppData\\Local\\Programs\\Julia-1.10.9\\bin\\julia.exe

```

---

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 4, 2025, 1:04pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/5 "2025-08-04T13:04:46Z")

</div>

Hello,  
What other IDEs can I use?

Thank you.

---

<div class="post-metadata">

### Author: ![mbauman](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mbauman/32/31082_2.png) [@mbauman](https://discourse.julialang.org/u/mbauman)
#### Post date: [August 4, 2025, 2:07pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/6 "2025-08-04T14:07:46Z")

</div>

I fear you’re in for a world of pain. After every hurdle you clear, another one will pop up. Windows 7 is old enough to legally drive a car in the US, and has been unsupported for ten years now. Microsoft doesn’t even allow you to _pay them extra_ for support anymore — that ended five years ago.

So even if someone did this work for you and found something that works, you’ll likely hit another issue. And another. And another.

If that’s fun for you, awesome! But it doesn’t seem like you’re interested in doing much legwork here yourself.

---

<div class="post-metadata">

### Author: ![mike\_k](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mike_k/32/211864_2.png) [@mike\_k](https://discourse.julialang.org/u/mike_k)
#### Post date: [August 4, 2025, 2:25pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/7 "2025-08-04T14:25:49Z")

</div>

You could try to use the portable version of julia (; this is what I always do).

---

<div class="post-metadata">

### Author: ![Snowy](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/snowy/32/36765_2.png) [@Snowy](https://discourse.julialang.org/u/Snowy)
#### Post date: [August 4, 2025, 2:30pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/8 "2025-08-04T14:30:36Z")

</div>

Not a bad idea. Linking here for OP: [https://julialang-s3.julialang.org/bin/winnt/x64/1.11/julia-1.11.6-win64.zip](https://julialang-s3.julialang.org/bin/winnt/x64/1.11/julia-1.11.6-win64.zip)

Does the portable version get releases at the same time as the non portable version?

Also, Windows 7 was a great OS. Win 10 support is ending in October and I’ve seen enough garbage in Win 10 and 11 that I’m finally going to jump ship to Linux (Pop\_OS). I’ve been using it off and on for a year or two now for Julia development and it’s been great. I highly recommend for anyone in a similar situation as OP.

---

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 4, 2025, 4:40pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/9 "2025-08-04T16:40:32Z")

</div>

Hello,  
Thank you so much for your reply.  
The problem is not Julia. I have installed Julia version 1.10.9. My problem is VSCodium. Can anyone install a Windows 7 x64 in VirtualBox and test it?

---

<div class="post-metadata">

### Author: ![jling](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jling/32/212909_2.png) [@jling](https://discourse.julialang.org/u/jling)
#### Post date: [August 4, 2025, 7:37pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/10 "2025-08-04T19:37:58Z")

</div>

> [@hack3rcon](#):
>
> Can anyone install a Windows 7 x64 in VirtualBox and test it?

very unlikely, it might be easier for you to install Julia in virtual machine with newer windows or something

---

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 5, 2025, 6:11am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/11 "2025-08-05T06:11:42Z")

</div>

Hello,  
Thank you so much for your reply.  
The problem is that my system is old and I can’t install Windows 10 on it. Its hardware specifications are not strong enough for me to install a virtual machine on it.

---

<div class="post-metadata">

### Author: ![nilshg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nilshg/32/2283_2.png) [@nilshg](https://discourse.julialang.org/u/nilshg)
#### Post date: [August 5, 2025, 8:07am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/12 "2025-08-05T08:07:06Z")

</div>

[Microsoft says](https://support.microsoft.com/en-gb/windows/windows-10-system-requirements-6d4e9a79-66bf-7950-467c-795cf0386715) these are system requirements for Windows 10:

 ![image](https://global.discourse-cdn.com/julialang/original/3X/1/8/182cffa66939575c35cd77ea6197af6327055148.png)

which I would say are are below what is required to run Julia and VSCode for most practical purposes.

---

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 5, 2025, 10:02am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/13 "2025-08-05T10:02:03Z")

</div>

Hello,  
Do you think Windows 10 can even function properly with 1 GB of RAM? It will probably just boot up.

---

<div class="post-metadata">

### Author: ![Benny](https://avatars.discourse-cdn.com/v4/letter/b/49beb7/32.png) [@Benny](https://discourse.julialang.org/u/Benny)
#### Post date: [August 5, 2025, 5:37pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/14 "2025-08-05T17:37:22Z")

</div>

Minimum requirements aim for usability, but it’s definitely not the ideal experience. IIRC, the typical RAM capacity was 4GB in 2015 when Windows 10 released; for comparison, VS Code released in 2015, and VS Codium and Julia v1 released in 2018, so it’s worth checking what versions intentionally [support Windows 7](https://github.com/VSCodium/vscodium/issues/1264). 32-bit addresses are constrained to 4GB of course, though PAE and multiple processes extend that.

---

<div class="post-metadata">

### Author: ![opera\_malenky](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/opera_malenky/32/8213_2.png) [@opera\_malenky](https://discourse.julialang.org/u/opera_malenky)
#### Post date: [August 5, 2025, 7:01pm UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/15 "2025-08-05T19:01:23Z")

</div>

Is there a special reason you need to stick with Windows at all? I think the usual recommendation for working on older/lower-resource computers is to grab a Linux/BSD install with a low-resource windows manager (e.g., Xfce, etc.) It’d be better from a security standpoint, at least.

In terms of IDEs, the other ones people use here are emacs and vim/neovim. Those will likely be better for a low-resource environment than vscode, but have the downside of taking more trouble to install/configure (especially to get anything like a “full” IDE experience). However, I have no idea if there would be issues compiling/running those on such an old version of windows.

---

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 9, 2025, 6:59am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/16 "2025-08-09T06:59:27Z")

</div>

Hello,  
Thank you for your suggestion.  
The user who wants to work with this system is a teenager who only knows Windows.

---

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 9, 2025, 7:02am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/17 "2025-08-09T07:02:26Z")

</div>

Hello,  
I’m sure that both VSCodium and the Julia extension existed in Windows 7. Let’s say it’s the Windows 7 era now, which versions were there?

---

<div class="post-metadata">

### Author: ![nilshg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nilshg/32/2283_2.png) [@nilshg](https://discourse.julialang.org/u/nilshg)
#### Post date: [August 9, 2025, 9:55am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/18 "2025-08-09T09:55:16Z")

</div>

Julia for VSCode v0. 1 was released in 2016, four years after the release of Windows 8 and one year after the realise of Windows 10 - so there likely wasn’t ever a version that targeted Windows 7.

I’ll also repeat my point from above, if your system doesn’t meet the minimum Win10 requirements I doubt that Julia + VSCode + Julia plug in will be running at usable speeds.

---

<div class="post-metadata">

### Author: ![hack3rcon](https://avatars.discourse-cdn.com/v4/letter/h/96bed5/32.png) [@hack3rcon](https://discourse.julialang.org/u/hack3rcon)
#### Post date: [August 9, 2025, 10:57am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/19 "2025-08-09T10:57:02Z")

</div>

Hello,  
What other IDEs can I use on Windows 7?

---

<div class="post-metadata">

### Author: ![StefanKarpinski](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/stefankarpinski/32/24_2.png) [@StefanKarpinski](https://discourse.julialang.org/u/StefanKarpinski)
#### Post date: [August 9, 2025, 11:46am UTC](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317/20 "2025-08-09T11:46:04Z")

</div>

You could maybe consider having a chat with your LLM of choice about this since it’s veered off the topic of Julia considerably.

[Next page](https://discourse.julialang.org/t/an-ide-interface-for-windows-7/131317.md?page=2)
