Skip to content

mmilian/xv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

xv - xeoVision services in the command line!

Windows Installation Guide

Installation

1. Open Terminal (PowerShell preferred) and download and execute the installation script by:

irm https://raw.githubusercontent.com/mmilian/xv/refs/heads/main/install.ps1 | iex
Alternatively (step by step) 1. Download and review the script:
# Download the script
irm https://raw.githubusercontent.com/mmilian/xv/refs/heads/main/install.ps1 -OutFile install.ps1
# Review the script
notepad install.ps1
# Execute the script
.\install.ps1

2. Set XEO_TOKEN environment variable

In PowerShell (Permanently for Current User):

[Environment]::SetEnvironmentVariable("XEO_TOKEN", "<your_token_here>", "User")
Alternatively (env for session, other shells)

In PowerShell (Current Session):

$env:XEO_TOKEN="<your_token_here>"

In Windows CMD (Permanently for Current User):

setx XEO_TOKEN="<your_token_here>""

After using setx, restart your terminal or log off and log back in to apply the changes.

In Windows CMD (Current Session):

set XEO_TOKEN="<your_token_here>"

3. Restart the Terminal to ensure that any environment variable changes take effect.

Warning

Do not have XEO_TOKEN? Go to docs.xeo.vision

4. Ready to Start

xv convert https://raw.githubusercontent.com/xeokit/xeokit-sdk/master/assets/models/ifc/Duplex.ifc --type ifc-xkt --artifact
Explanation:
  • xv convert <url> initiates the conversion process with specifies IFC file (from the web).
  • --type ifc-xkt sets the output format to xkt.
  • --artifact drops artifacts to local folder.
  • --log drops logs to local folder.

Uninstallation

1. Open PowerShell

Run the uninstall script with execution policy bypassed for this command only

powershell -ExecutionPolicy Bypass -File "$HOME\.xv\uninstall.ps1"
Note: If XV was installed in a different directory, replace $HOME\\.xv\uninstall.ps1 with the correct path. There is no need to change the directory; the command specifies the full path to the uninstall script.

Usage

For more information on XV commands and options, you can view the help documentation:

xv --help

or check our docs.xeo.vision

Support:

If you encounter any issues or have questions, please refer to the official documentation or contact the support team. [docs.xeo.vision/contact]https://docs.xeovision.io/contact/)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published