Showing posts with label Windows Issue. Show all posts
Showing posts with label Windows Issue. Show all posts

Friday, November 2, 2018

Appc is not recognized as an internal or external command

Try the following steps.

1.  uninstalled appcelerator (npm uninstall -g appcelerator).

2. Then uninstalled Node.

3. Also, delete any node directory to make sure any traces of Node was removed.

4. Reinstall Node - https://nodejs.org/en/#download

5. Reinstall appcelerator (npm install -g appcelerator)
6. Run - appc use latest -l trace

7. Run - appc setup -l trace


Hope this helps.

Tuesday, January 17, 2017

Clean uninstall then reinstall CLI to the windows PC.

At first, uninstall the Studio from the control panel then delete the following folder
 . Appcelerator
 .titanium, 
 .android 
 .eclipse from your root directory "c:\Users\pcName”  then run the following commands


- npm install -g appcelerator
- appc use latest
- appc setup
Hope this helps.

Friday, December 16, 2016

Fresh installation Appcelerator Studio to the windows PC.

If you download the Appcelerator Studio and try to install, it will cover all the steps automatically, but sometimes it creates problem to install. So it's better to install all other prerequisites first then install Appcelerator Studio.


If you face any issue after installation then uninstall the Studio, node.js, and all JDK, JRE version from your system then follow the following steps to install Appcelerator Studio to the Window PC.

Prerequisite and Steps
1. Install JDK8, 
2. Download compatible nodeJS version and install it
3.Then run the following command via the command prompt
- npm install -g appcelerator
- appc use latest
- appc config set proxyServer null
- appc setup
4. Finally, download the latest version of Axway Appcelerator Studio and install it on your machine. It will automatically install all other prerequisites.

Now open the Axway Appcelerator Studio.

Hope this helps.

Wednesday, December 14, 2016

Setup Android SDK to the Appcelerator Studio for windows PC

At first, download the Android SDK then place it inside the"C:" directory and show the location to the
Axway Appcelerator Studio>>Preferences>>Studio>>Platforms>Android>Android SDK Home
Then click on Install SDKs>> Now select all android 8.X.X, v7.X.X  and install those packages. 
If you face any issue then try to setup android SDK via the command prompt
  • appc ti config android.sdk  <SDK location>
  • appc ti setup android
  • And restart PC 
Also, take a look android SDK installation guide -
Hope this helps.

Thursday, December 1, 2016

When Studio open get an error on startup, windows platform.


Please try this following command via the terminal. 

appc logout -D
npm install -g appcelerator
appc use latest
appc config set proxyServer null
appc setup
appc login

Then open Appcelerator Studio and let us know if it works for you.

Friday, November 1, 2013

Path problem solution on titanium studio for Windows 7

Three basic Most Important path in environment variable to run titanium studio in Windows PC for android and the location is
MyComputer>properties>Advanced system Setting>Environment Variable>SysteVariable
and everything you set system Variable path
1. JDK path
2.Node Path
3. Build in  Path
  •  Path number one i have already answered This Link
  • And path Number Three that is build in  when you setup win7 that is automatically generated in environment variable path into System variable
All Windows systems must have the following paths at the beginning of their PATH environment variable to function properly:%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0
And if you delete this your titanium studio don't built any project successfully
So be careful don't delete that 
  • And node path it also automatically generated when node.js is installed sometimes it not do that so you should know that how to set node path in system variable
variable name= path
variable Value=C:\Program Files (x86)\nodejs

you don't delete before set the value of path or don't create new path, you just editing the remaining path and set every value after semicolon.
You Can also show android SDK path
1. tools path=D:\android-sdk\tools;(you PC SDK location)
2. platform tools path=D:\android-sdk\platform-tools(you PC SDK location)


Thanks  



Thursday, October 31, 2013

How to set JDK path in environment variable


At first right click my computer and select properties

1. Click the Advanced System Setting Tab
2. Click the Environment variables button
3. Under system variables click new..
4. Enter the variable name as JAVA_HOME. Then set the value C:\Program Files (x86)\Java\jdk1.8.0_31
 (note: this is your computer jdk path)

Now Select path in system Variable
  •  Click the edit button Then add the value at the end after semicolon C:\ Program Files (x86)\Java\jdk1.8.0_31\bin  (Note: Do NOT delete any value of this path variable)
  •  Click OK.
  •  click Apply Changes.

 You might need to restart windows.
 I think JDK problem would not show again. Now you
can run your project.

Thanks