CodeProject.AI on Ubuntu

Cor K Dikland

Getting the hang of it
Apr 25, 2019
102
37
Ontario, Canada
Anyone getting this package i(v2.9.5 Ubuntu X64) installed under Ubuntu? I am currently running Ubuntu V24.04 and got through most of the C...AI install but it bombed during the "Processing Modules" section ending with the error "This module cant installed on this system"
No idea which "This module" is

Anyone?

SOLUTION: CodeProject.AI on Ubuntu
 
Last edited:
Anyone getting this package i(v2.9.5 Ubuntu X64) installed under Ubuntu? I am currently running Ubuntu V24.04 and got through most of the C...AI install but it bombed during the "Processing Modules" section ending with the error "This module cant installed on this system"
No idea which "This module" is

Anyone?

I just successfully installed 2.9.5 Ubuntu x64 today on ubuntu VM with steps below:

## Install GPU driver, toolkit, .net SDK... first before execute commands below.

wget https://codeproject-ai-bunny.b-cdn.net/server/installers/linux/codeproject.ai-server_2.9.5_Ubuntu_x64.zip
unzip codeproject.ai-server_2.9.5_Ubuntu_x64.deb
sudo dpkg -i codeproject.ai-server_2.9.5_Ubuntu_x64.deb
bash /usr/bin/codeproject.ai-server-2.9.5/start.sh

#Wait for Face, YOLOs (by default) installations to finish.
#Check with IP:32168 to make sure CPA server is up

pushd "/usr/bin/codeproject.ai-server-2.9.5/server" && bash ../setup.sh && popd
cd /etc/systemd/system/

#Check for file name codeproject.ai-server.service

sudo systemctl daemon-reload
sudo systemctl enable codeproject.ai-server.service
sudo systemctl start codeproject.ai-server.service

# to auto start codeproject server after reboot
# you might have to execute sudo dpkg -r codeproject.ai-server to remove previous install.

Hope this helps.
 
  • Like
Reactions: Cor K Dikland
I just successfully installed 2.9.5 Ubuntu x64 today on ubuntu VM with steps below:

## Install GPU driver, toolkit, .net SDK... first before execute commands below.

wget https://codeproject-ai-bunny.b-cdn.net/server/installers/linux/codeproject.ai-server_2.9.5_Ubuntu_x64.zip
unzip codeproject.ai-server_2.9.5_Ubuntu_x64.deb
sudo dpkg -i codeproject.ai-server_2.9.5_Ubuntu_x64.deb
bash /usr/bin/codeproject.ai-server-2.9.5/start.sh

#Wait for Face, YOLOs (by default) installations to finish.
#Check with IP:32168 to make sure CPA server is up

pushd "/usr/bin/codeproject.ai-server-2.9.5/server" && bash ../setup.sh && popd
cd /etc/systemd/system/

#Check for file name codeproject.ai-server.service

sudo systemctl daemon-reload
sudo systemctl enable codeproject.ai-server.service
sudo systemctl start codeproject.ai-server.service

# to auto start codeproject server after reboot
# you might have to execute sudo dpkg -r codeproject.ai-server to remove previous install.

Hope this helps.
This look very similar to what I did EXCEPT bash /usr/bin/codeproject.ai-server-2.9.5/start.sh which may explain why the modules didnt work. Will try your steps above later today. Thanks for your input


IT WORKED!!!! For anyone else trying this follow the above instruction exactly as shown.
 
Last edited: