Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
1k views

Angular 19 has changed the syntax and underlying scss files. I am trying to access the systems variables https://material.angular.io/guide/system-variables defined as part of angular 19 but unable to ...
maxkart's user avatar
  • 667
0 votes
2 answers
2k views

I am trying to setup gaussian splatting with conda, however when it comes to installing the submodules - diff-gaussian-rasterization & simple-knn, it reports the error "No CUDA runtime is ...
dotato's user avatar
  • 19
1 vote
0 answers
933 views

I am having trouble getting python up and running again. It used to be working fine on my desktop, but I messed something up with virtual environments, and now I cannot even get a simple python ...
Krabs's user avatar
  • 21
0 votes
1 answer
692 views

I'm trying to communicate in C# with CANoe but I get some errors. I have this setup to Open and Start (⚡) CANoe APP, and it is working fine: private CANoe.Application CANoeApp; private void ...
Óscar's user avatar
  • 1
1 vote
1 answer
12k views

Okay, so I followed this quickstart tutorial for getting ChatGPT api to work with python: https://platform.openai.com/docs/quickstart?lang=ChatCompletions Its the og documentation. I did all the steps ...
Samuel Schuetz's user avatar
1 vote
1 answer
193 views

I'm working with WSO2 and I have a task that needs to be triggered based on a system variable. I want to dynamically set the trigger interval for the task using the value of a system variable in cron ...
Gandalf CZ3's user avatar
2 votes
2 answers
3k views

I have been trying to set a simple environment variable (or system property, whatever works really) through build.gradle file to access it from a java method (which is not part of integration tests) ...
scottstots's user avatar
0 votes
0 answers
1k views

I defined a system variable in my CAPL file that I use to set up different modes in my script. I declared it in my CAPL file and not in my CANAlyzer window in order to allow the script to work with ...
Alexis Viardot's user avatar
0 votes
1 answer
263 views

[Enviroment]::SetEnviromentVariable("Path", "d:/test/bin;c:/test", "Machine" If the variable already exists with other values in it; how can I adjust this script to not ...
John Doe's user avatar
0 votes
1 answer
2k views

I am following this instruction to install hadoop 3.3.1 on Windows 10 machine, I followed all the steps as it says but when I reached to step 6, after replacing the bin folder, it asks to run the ...
user20551429's user avatar
0 votes
1 answer
460 views

Do you know how to derive path for system variables $(System.ArtifactsDirectory) and $(Pipeline.Workspace) when deployment job running in Azure pipeline? e.g. If I enable debug, then in logs I can see ...
stella's user avatar
  • 1
0 votes
1 answer
474 views

So i went through all kinds of similar questions but couldn‘t find one specifically answering THIS: From what i know, the JAVA_HOME system variable is case-sensitive and should always be capitalized. ...
LovingGreatAnswers's user avatar
1 vote
1 answer
80 views

I have a module that I want to be able to import from any script without doing any sys.add_path and similar stuff. I want it to be permanently added. Since I installed Python with anaconda, I have a ...
Luka Savic's user avatar
0 votes
2 answers
1k views

I'm getting this error when trying to run this jmeter sentence from a maven project in java. jmeter -g DIRECTORY -o DIRECTORY When I run it in cmd it works perfectly but when I try to run it using ...
Agustín De Cesare's user avatar
0 votes
0 answers
474 views

<target name ="npm-install"> <exec dir="${pathToSomeDir}" executable="npm.cmd" failonerror="true"> <arg value="install" /> </...
gson.json's user avatar
0 votes
1 answer
876 views

I have following problem. I installed new OpenJDK 17: c:\java\jdk-17.0.2 I've set up JAVA_HOME to it and added to path: JAVA_HOME\bin in cmd when I type java -version it works. But when I run it from ...
Martin Fric's user avatar
0 votes
1 answer
788 views

When i try to start my react application with npm start, i get the following error: events.js:377 throw er; // Unhandled 'error' event ^ Error: spawn powershell ENOENT at Process....
Schmank's user avatar
  • 405
0 votes
0 answers
153 views

As the ADO documenation on using system variables in pipeline conditions is not very clear, I came here to find an answer. But I found two. condition: eq(variables.buildSourceBranchName, 'main') and ...
Mark Chassy's user avatar
0 votes
1 answer
256 views

Iam trying to add a directory permanently to Path via CMD. When i try to use the command: setx path "%path%;C:\Program Files (x86)\chromedriver\chromedriver.exe" it only saves it to the ...
LordB's user avatar
  • 23
0 votes
0 answers
71 views

The question regards an endpoint that I want to make available only for demoing and should not be part of the project in production. Therefore I need to find a way of making the piece of code that ...
Noam_I's user avatar
  • 17
0 votes
0 answers
173 views

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'...
Jordan Zdimirovic's user avatar
0 votes
0 answers
41 views

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?
93_E_Vaibhav Dixit's user avatar
2 votes
1 answer
461 views

Hello all, options = Options() options.add_argument('--headless') options.add_argument('--disable-gpu') dr = webdriver.Chrome(ChromeDriverManager().install(), options=options) dr.get("url") ...
Shyam Sundar's user avatar
1 vote
0 answers
337 views

Im trying to hide api key in my angular project environment using @angular-builders/custom-webpack which will fetch value from system environment variable through process.env during build . But after ...
Naveenkumar A's user avatar
1 vote
1 answer
96 views

Recently I have installed Cassandra on my windows 10 laptop. In Cassandra specification, they mentioned that this version is suitable with only Java 8 and Python 2 Versions. But on my laptop, I'm ...
Narendra7's user avatar
4 votes
3 answers
5k views

When I try using "./gradlew run" on my gradle projects, I receive this error: * What went wrong: Execution failed for task ':app:compileJava'. > java.lang.IllegalAccessError: class org....
Thomas McGuigan's user avatar
1 vote
1 answer
6k views

I was trying to edit the %PATH% variable using command line in Windows 10, following the Edit %PATH% Variable in Windows 10 tutorial, but pathman/au was not recognized. What should be the right ...
user288609's user avatar
  • 13.2k
0 votes
0 answers
154 views

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 ...
Esmee's user avatar
  • 103
3 votes
1 answer
7k views

I have AWS server where we are setting all system environment variables. For reference system environment variables like DATABASE connection, EMAIL CLIENT configurations and some other configuration. ...
Viral's user avatar
  • 471
1 vote
6 answers
19k views

I just installed Flutter SDK, And I got an error Error: Unable to find git in your PATH. when I type flutter --version in CMD. I searched about this and I found some answers, but nothing works. I ...
Superjay's user avatar
  • 477
0 votes
1 answer
971 views

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 -&...
Steven Chen's user avatar
8 votes
2 answers
23k views

I tried to install java 14 manually on Windows 10. I set the System Variables as in this picture. But when I use the command "java -version" literally nothing happens... C:\WINDOWS\system32&...
Gesichtsfelsen's user avatar
0 votes
0 answers
250 views

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 ...
Bharadwaj Niraj Joshi's user avatar
0 votes
1 answer
61 views

I have a 3 Dimensional List like this: List<List<List<Vector128<byte>>>> dimensionLIST = new List<List<List<Vector128<byte>>>>(); Now, when I fill this ...
Andreas's user avatar
  • 1,295
4 votes
1 answer
270 views

I'm trying to build and deploy my angular 9 project in production environment. The main goal is to protect my back-end services IP address and credentials as these environments can't be exposed to ...
user7421798's user avatar
0 votes
1 answer
104 views

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 ...
Alexa Sale's user avatar
0 votes
3 answers
444 views

I have a JUnit test class starting with this declaration @RunWith(SpringRunner.class) @SpringBootTest @TestPropertySource(properties = { "cache.working.dir=./src/test/resources/...
Frédéric Vidal's user avatar
0 votes
1 answer
5k views

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's user avatar
0 votes
0 answers
676 views

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 ....
McFiddlyWiddly's user avatar
6 votes
2 answers
2k views

I am trying to install mlflow in R and im getting this error message saying mlflow::install_mlflow() Error in mlflow_conda_bin() : Unable to find conda binary. Is Anaconda installed? If ...
user10486706's user avatar
0 votes
1 answer
201 views

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 ...
Karlovsky120's user avatar
  • 6,402
0 votes
0 answers
1k views

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, ...
Geoff Griswald's user avatar
0 votes
0 answers
875 views

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, ...
Calisto's user avatar
  • 54
3 votes
1 answer
6k views

How to disable caching queries' results for the current session in MySQL8? The Documentation of system variables has lot of variables that regard to caching but most of them are deprecated and I could ...
Jimmix's user avatar
  • 6,671
0 votes
2 answers
3k views

I want to set environment variable in JAVA . For this , I have searched a lot in internet and got the following code ProcessBuilder pb = new ProcessBuilder(); Map<String, String> env = pb....
Parul's user avatar
  • 1
1 vote
4 answers
18k views

I was trying to set the GRADLE_HOME system variable for my system as per this video in youtube. I am admin user and only user in my system. enter image description here This image is screenshot from ...
Ashmin's user avatar
  • 25
0 votes
1 answer
64 views

I am creating a system application which can modify the phone state variable to ringing or idle. The permission MODIFY_PHONE_STATE is available only to system applications. After creating a system ...
Anuj Arora's user avatar
0 votes
1 answer
570 views

When you install python on windows, you have to set the path by going to the Environment Variables, then click New, enter the name, then in the value place enter the path, finally edit the path and ...
xilpex's user avatar
  • 3,305
3 votes
3 answers
2k views

I'm deploying a node.js app on Heroku dyno and using config module that requires me to define a system variable NODE_CONFIG_DIR with the location of the config folder. The config folder is located on ...
David Raviv's user avatar
0 votes
1 answer
322 views

I have source excel file and I need to add the file name to every row, When I select the file name from system variables, the system set 0 as the length. How could I change this value?
Mohamadreza Bayati's user avatar