Can PureBASIC run on a Raspberry Pi? Looked everywhere and
Can PureBASIC run on a Raspberry Pi? Looked everywhere and
cant get a straight answer...
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
No PB can't run on Raspberry Pi!
As there is no arm support
As there is no arm support
Windows 11, Manjaro, Raspberry Pi OS


Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
@ Idle,
Darn. That's a shame. Looks like I may have to learn how to program in python and pgame....
Darn. That's a shame. Looks like I may have to learn how to program in python and pgame....

Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
Have you tried go?
It runs on raspberrypi.
Go is the easiest cross-compilable C-style language around (x86/x64/ARM-Win/Lin/OSX/BSD/Plan9) with real BASIC attributes like good strings, fast compile times, etc.
The only thing that is lacking is on the GUI front...
But if you want to do games there is a SDL package for go.
BTW: I have a raspberrypi but didn't have time yet to play with it. Have to wait until years-end for that...
If you install go it would be nice if you would let me know how it went.
It runs on raspberrypi.
Go is the easiest cross-compilable C-style language around (x86/x64/ARM-Win/Lin/OSX/BSD/Plan9) with real BASIC attributes like good strings, fast compile times, etc.
The only thing that is lacking is on the GUI front...
But if you want to do games there is a SDL package for go.
BTW: I have a raspberrypi but didn't have time yet to play with it. Have to wait until years-end for that...
If you install go it would be nice if you would let me know how it went.
I am to provide the public with beneficial shocks.
Alfred Hitshock
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
@ fsw,
Thanks v much for the tip.
I have really only been programming with variants of basic, but I have just started in to c# (and XNA, sorry).
So maybe Go is a good option.
Although, I'm like you. I'm stuck in to 'real' work now til xmas break. Maybe after that I'll get going with Go, so to speak.
Thanks again.
Thanks v much for the tip.
I have really only been programming with variants of basic, but I have just started in to c# (and XNA, sorry).
So maybe Go is a good option.
Although, I'm like you. I'm stuck in to 'real' work now til xmas break. Maybe after that I'll get going with Go, so to speak.
Thanks again.
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
Python is quite a nice language to learn, you'll like it. It might seem quite different to basic but you can see the uses for the differences after a while.Duffer123 wrote:@ Idle,
Darn. That's a shame. Looks like I may have to learn how to program in python and pgame....
I especially like the ability to reference the characters in a string as an array.
Code: Select all
tmp$="star"
tmp$[0] //s
tmp$[1] //t
tmp$[2] //a
tmp$[3] //r
tmp$[1:3] //tar
tmp$[1:] //tar

Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
This is the go equivalent:moogle wrote:Python is quite a nice language to learn, you'll like it. It might seem quite different to basic but you can see the uses for the differences after a while.Duffer123 wrote:@ Idle,
Darn. That's a shame. Looks like I may have to learn how to program in python and pgame....
I especially like the ability to reference the characters in a string as an array.
Gets rid of having to use Mid() all the time.Code: Select all
tmp$="star" tmp$[0] //s tmp$[1] //t tmp$[2] //a tmp$[3] //r tmp$[1:3] //tar tmp$[1:] //tar
Code: Select all
tmp := "star" // := gets the type out of the value
tmp[0] //s
tmp[1] //t
tmp[2] //a
tmp[3] //r
tmp[1:3] //tar
tmp[1:] //tar

Some people like Python, but I can't stand the dangling code...

I am to provide the public with beneficial shocks.
Alfred Hitshock
- the.weavster
- Addict
- Posts: 1576
- Joined: Thu Jul 03, 2003 6:53 pm
- Location: England
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
I think Gambas versions > 3.2 work on the Raspberry Pi.
Do take a look at Python though, it's a great language.
Don't be put off by the angle of the dangle, its breadth is hugely impressive
Do take a look at Python though, it's a great language.
Don't be put off by the angle of the dangle, its breadth is hugely impressive

Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
@ the.weavster,
Many thanks for pointing out Gambas. I will also get around to trying python. Embroiled in c# at the mo....
Many thanks for pointing out Gambas. I will also get around to trying python. Embroiled in c# at the mo....
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
yea, as I posted elsewhere, be a good move on Fred's part to make a small version of Purebasic that could run on the Raspberry Pi,
call it Pure_Pi Whipped Cream edition, or Pure-Pi WC.
Doesnt need to be fully compatible with PB, just be as easy to use is all,.
and Charge 50 bucks or so for it, we'd all pitch in, right people?
I hate Python, god awful looking syntax, and takes crap loads of coded to do what PB can do in about 8 lines.
Peace Out Programmers!
call it Pure_Pi Whipped Cream edition, or Pure-Pi WC.
Doesnt need to be fully compatible with PB, just be as easy to use is all,.
and Charge 50 bucks or so for it, we'd all pitch in, right people?
I hate Python, god awful looking syntax, and takes crap loads of coded to do what PB can do in about 8 lines.
Peace Out Programmers!
- the.weavster
- Addict
- Posts: 1576
- Joined: Thu Jul 03, 2003 6:53 pm
- Location: England
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
You're doing it wrong, try writing code instead of crapping it. Python code is just great so long as you're not relying on an arsehole to produce it.link0101 wrote:I hate Python, god awful looking syntax, and takes crap loads of coded to do what PB can do in about 8 lines.
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
the.weavster wrote:You're doing it wrong, try writing code instead of crapping it. Python code is just great so long as you're not relying on an arsehole to produce it.link0101 wrote:I hate Python, god awful looking syntax, and takes crap loads of coded to do what PB can do in about 8 lines.

Python is really nice, and the features it has are awesome. If anything it would be great if PB had some of python's string operators.

Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
ditto.moogle wrote:... it would be great if PB had some of python's string operators.
-
- Always Here
- Posts: 6426
- Joined: Fri Oct 23, 2009 2:33 am
- Location: Wales, UK
- Contact:
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
actually, it would be great if PB had C's sprintf_s().it would be great if PB had some of python's string operators.
and C can do this too, making it easy to test/change individual characters:
Code: Select all
char tmp[4] = "star"; // a 'char array' as a string
tmp[0]; //s
tmp[1]; //t
tmp[2]; //a
tmp[3]; //r
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
If it sounds simple, you have not grasped the complexity.
Re: Can PureBASIC run on a Raspberry Pi? Looked everywhere
I believe that it is a huge task, and last week, I was wondering why PB is not concentrating to Windows only, as it is the most important OS, and then use VMWare or equivalent to run it on the other Operating Systems?supporting Win+OSx+Linux is already a mighty big task
This could make development of PureBasic go much faster.

"Just my 2 cents" as some are saying

- Windows 11 Home 64-bit
- PureBasic 6.10 LTS (x64)
- 64 Gb RAM
- 13th Gen Intel(R) Core(TM) i9-13900K 3.00 GHz
- 5K monitor with DPI @ 200%
- PureBasic 6.10 LTS (x64)
- 64 Gb RAM
- 13th Gen Intel(R) Core(TM) i9-13900K 3.00 GHz
- 5K monitor with DPI @ 200%