Questions tagged [system-variable]

146 questions
0
votes
0 answers

PATH different in VSCode (due to conda)

I am trying to get my VSCode terminal to see a mingw installation. When I run the command... gcc --version ... in regular CMD, it works as expected. However, when I use it in VSCode terminal, it isn't found. Upon checking, the PATH variables are…
0
votes
0 answers

I want to copy the path of mingw in system variables, but there is no extra path line shown

I have Windows 10 Pro operating system. I want to copy the path of mingw in system variables, but there is no extra path line shown here. What to do?
0
votes
1 answer

edit PATH variable using command line in widows 10

I was trying to edit %path% variable using command line in windows 10, following this tutorial, but pathman/au was not recognized. What should be the right approach to do that?
user288609
  • 12,465
  • 26
  • 85
  • 127
0
votes
0 answers

Python found on Ubuntu, but not on Command Prompt

I suddenly have a problem with Python, which I first didn't have. When I run python3 quickexample.py or python quickexample.py, I get the error Python was not found; run without arguments to install from the Microsoft Store, or disable this…
Esmee
  • 93
  • 11
0
votes
1 answer

System Verilog parameterize Module Name

Assuming in the design, all module's input/output ports are the same. however, the module name are different and number of module counts are different by project. Is it possible to have 2 parameters -> Can it be synthesiable ? parameter…
0
votes
0 answers

How can I set environment variable for java jdk bin so that it shows same version in command prompt

I have set the Path variable in Environment Variables to C:\Java\jdk-15\bin which is the latest jdk I've recently downloaded from official Oracle site. But, when I try to check the Java version from any other directory, it shows the version as…
0
votes
1 answer

Does a System Wide Global List variable exist

I have a 3 Dimensional List like this: List>>> dimensionLIST = new List>>>(); Now, when I fill this List with the data I use for calculations, it will take up 20 GB of RAM memory. The calculations…
Andreas
  • 1,121
  • 4
  • 17
  • 34
0
votes
1 answer

Why does the Java JDK not set its own path after installation on Windows?

Problem: After installing Java SE version 14.0.1 I tried to run the command java in CMD because I wanted to check if everything works as it should, but an error occurred because CMD could not find what I wanted. I checked the system environment…
0
votes
3 answers

@TestPropertySource windows and linux file separator

I have a JUnit test class starting with this declaration @RunWith(SpringRunner.class) @SpringBootTest @TestPropertySource(properties = { "cache.working.dir=./src/test/resources/cacheDirRepository/" } ) How can I launch this test class on a…
0
votes
1 answer

'swipl' is not recognized as an internal or external command, operable program or batch file

I already added the path to my system variables but still when I type swipl in the command prompt it doesn't open the program. System Variables
MahmoudLamei
  • 11
  • 1
  • 2
0
votes
0 answers

Batch file won't copy folder and files from batch directory

I have a batch file with three multiple choice options. If I select A, it is supposed to copy a folder called Files (located in the same root directory as the batch file) to the root of the C:\ drive. I can't seem to understand why the %SystemDrive%…
willowen100
  • 29
  • 1
  • 1
  • 4
0
votes
0 answers

How do I "add GRADLE_HOME to system variables" in mac?

I'm trying to get a repo running, and one of the steps is add GRADLE_HOME to system variables I've already added JAVA_HOME to my path (I think correctly?), which was a previous step. running nano .bash_profile shows me the following export…
McFiddlyWiddly
  • 547
  • 10
  • 29
0
votes
0 answers

Visual Studio 2019 not resolving system variable

Visual studio doesn't want to resolve a system variable. In Computer>Properties>Advanced>Environment Variables variable VULKAN_SDK is set to C:\VulkanSDK\1.2.131.2. However, if I go to Project>Properties>C/C++ setting Additional Include Directories…
Karlovsky120
  • 6,212
  • 8
  • 41
  • 94
0
votes
0 answers

Get Parent Stored Procedure Name?

In SQL Server 2016, I have a stored procedure that sends an email, which I call from various other stored procedures. As part of that email procedure, I'd like to log the results to a table, including the name of the stored procedure that was used…
0
votes
0 answers

How to configure mingw to search libs?

I'm trying to compile my program for windows, i'm using mingw i686-w64-mingw32-gcc Pagina_inicial.c -o Pagina_inicial `pkg-config --libs --cflags gtk+-2.0 mysqlclient` but only the --cflags was find, the --libs does ld return…
Calisto
  • 46
  • 1
  • 4