Problem in using hugo static site generators

Project link → GitHub - numpy/numpy.org: The NumPy home page

$ go version

go version go1.22.2 linux/amd64

$ hugo version

hugo v0.147.8-10da2bd765d227761641f94d713d094e88b920ae+extended linux/amd64 BuildDate=2025-06-07T12:59:52Z VendorInfo=gohugoio

$ sass --version

1.89.2 compiled with dart2js 3.8.1

When I try to run every time, I get this issue.

$ hugo serve

Watching for changes in /home/bs/numpy.org/{archetypes,assets,content,layouts,static,themes}

Watching for config changes in /home/bs/numpy.org/config.yaml, /home/bs/numpy.org/themes/scientific-python-hugo-theme/config.yaml, /home/bs/numpy.org/themes/scientific-python-hugo-theme/themes/hugo-atom-feed/config.toml

Start building sites …

hugo v0.147.8-10da2bd765d227761641f94d713d094e88b920ae+extended linux/amd64 BuildDate=2025-06-07T12:59:52Z VendorInfo=gohugoio

ERROR TOCSS-DART: failed to transform “theme-css/sphinx-design/index.scss.css” (text/x-scss): got unexpected EOF when executing “sass”. The user running hugo must have read and execute permissions on this program. With execute permissions only, this error is thrown.

ERROR TOCSS-DART: failed to transform “theme-css/pst/bootstrap.scss.css” (text/x-scss): “:1:1”: connection is shut down

ERROR TOCSS-DART: failed to transform “theme-css/pst/pydata-sphinx-theme.scss.css” (text/x-scss): “:1:1”: connection is shut down

Built in 2917 ms

Error: error building site: TOCSS-DART: failed to transform “theme-css/pst/bootstrap.scss.css” (text/x-scss): “:1:1”: connection is shut down

Please help me to resolve this problem.

stat -c '%A %n' $(type -P sass)

இந்த கமாண்டை இயக்கி வரும் தகவலை பகிரவும்.

$ stat -c ‘%A %n’ $(type -P sass)
lrwxrwxrwx /home/bs/.nvm/versions/node/v22.12.0/bin/sass

இது எனக்குக் கிடைத்த வெளியீடு.

realpath $(type -P sass)

இந்த கமாண்டை இயக்கி வரும் தகவலை பகிரவும்.

$ realpath $(type -P sass)
/home/bs/.nvm/versions/node/v22.12.0/lib/node_modules/sass/sass.js

இது எனக்குக் கிடைத்த வெளியீடு.

sudo apt update -y
sudo apt install -y golang

இந்த கமாண்டுகளை இயக்கி முதலில் லேட்டஸ்ட் golang ஐ நிறுவவும். பின்

CGO_ENABLED=1 go install -tags extended,withdeploy github.com/gohugoio/hugo@latest

இந்த கமாண்டை இயக்கி லேட்டஸ்ட் hugo வை நிறுவவும். பின்

curl -Lko - 'https://github.com/sass/dart-sass/releases/download/1.89.2/dart-sass-1.89.2-linux-x64.tar.gz' | tar -xvzf - -C ~/.local/bin/
ln -s dart-sass/sass ~/.local/bin/sass

இந்த கமாண்டுகளை இயக்கி லேட்டஸ்ட் sass ஐ நிறுவவும். பின்

sudo apt install -y python-is-python3

இந்த கமாண்டை இயக்கி python கமாண்ட் python3 கமாண்டை இயக்குமாறு வழிவகை செய்யவும் . பின்

git clone https://github.com/numpy/numpy.org.git
(cd numpy.org; git submodule update --init --recursive; make serve)

இந்த கமாண்டுகளை இயக்கினால் numpy.org இணையதளத்தின் பக்கங்களை உங்கள் http://localhost:1313 ன் வழியாக பார்க்கலாம்.

bs@bs-Lenovo-E41-25:~$ cd numpy
bs@bs-Lenovo-E41-25:~/numpy$ sudo apt update -y
sudo apt install -y golang
[sudo] password for bs:     
Hit:1 https://download.docker.com/linux/ubuntu noble InRelease
Hit:2 https://packages.microsoft.com/repos/code stable InRelease                         
Hit:3 http://security.ubuntu.com/ubuntu noble-security InRelease                         
Ign:4 http://packages.linuxmint.com wilma InRelease                                      
Hit:5 http://packages.linuxmint.com wilma Release                                        
Hit:6 http://archive.ubuntu.com/ubuntu noble InRelease              
Ign:8 https://packages.adoptium.net/artifactory/deb wilma InRelease 
Hit:9 http://archive.ubuntu.com/ubuntu noble-updates InRelease
Hit:10 http://archive.ubuntu.com/ubuntu noble-backports InRelease
Err:11 https://packages.adoptium.net/artifactory/deb wilma Release
  404  Not Found [IP: 104.18.20.66 443]
Reading package lists... Done
E: The repository 'https://packages.adoptium.net/artifactory/deb wilma Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
golang is already the newest version (2:1.22~2build1).
The following packages were automatically installed and are no longer required:
  golang-any linux-headers-6.8.0-51 linux-headers-6.8.0-51-generic
  linux-headers-6.8.0-52 linux-headers-6.8.0-52-generic linux-image-6.8.0-51-generic
  linux-image-6.8.0-52-generic linux-modules-6.8.0-51-generic
  linux-modules-6.8.0-52-generic linux-modules-extra-6.8.0-51-generic
  linux-modules-extra-6.8.0-52-generic linux-tools-6.8.0-51 linux-tools-6.8.0-51-generic
  linux-tools-6.8.0-52 linux-tools-6.8.0-52-generic
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 39 not upgraded.
bs@bs-Lenovo-E41-25:~/numpy$ CGO_ENABLED=1 go install -tags extended,withdeploy github.com/gohugoio/hugo@latest
go: github.com/gohugoio/hugo@v0.147.9 requires go >= 1.23.0; switching to go1.23.10
bs@bs-Lenovo-E41-25:~/numpy$ curl -Lko - 'https://github.com/sass/dart-sass/releases/download/1.89.2/dart-sass-1.89.2-linux-x64.tar.gz' | tar -xvzf - -C ~/.local/bin/
ln -s dart-sass/sass ~/.local/bin/sass
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:02 --:--:--     0dart-sass/src/LICENSE
dart-sass/src/dart
dart-sass/src/sass.snapshot
100 4270k  100 4270k    0     0  1071k      0  0:00:03  0:00:03 --:--:-- 1848k
dart-sass/sass
ln: failed to create symbolic link '/home/bs/.local/bin/sass': File exists
bs@bs-Lenovo-E41-25:~/numpy$ curl -Lko - 'https://github.com/sass/dart-sass/releases/download/1.89.2/dart-sass-1.89.2-linux-x64.tar.gz' | tar -xvzf - -C ~/.local/bin/
ln -s dart-sass/sass ~/.local/bin/sass
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0dart-sass/src/LICENSE
dart-sass/src/dart
dart-sass/src/sass.snapshot
100 4270k  100 4270k    0     0  1108k      0  0:00:03  0:00:03 --:--:-- 1168k
dart-sass/sass
bs@bs-Lenovo-E41-25:~/numpy$ git clone https://github.com/numpy/numpy.org.git
(cd numpy.org; git submodule update --init --recursive; make serve)
Cloning into 'numpy.org'...
remote: Enumerating objects: 21271, done.
remote: Counting objects: 100% (126/126), done.
remote: Compressing objects: 100% (66/66), done.
remote: Total 21271 (delta 82), reused 79 (delta 60), pack-reused 21145 (from 3)
Receiving objects: 100% (21271/21271), 25.72 MiB | 1.92 MiB/s, done.
Resolving deltas: 100% (14345/14345), done.
Submodule 'themes/scientific-python-hugo-theme' (https://github.com/scientific-python/scientific-python-hugo-theme.git) registered for path 'themes/scientific-python-hugo-theme'
Cloning into '/home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme'...
Submodule path 'themes/scientific-python-hugo-theme': checked out '42b638f37c0f5869a112f0c274d03bc349d1a7b3'
Submodule 'themes/hugo-atom-feed' (https://github.com/kaushalmodi/hugo-atom-feed) registered for path 'themes/scientific-python-hugo-theme/themes/hugo-atom-feed'
Cloning into '/home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/themes/hugo-atom-feed'...
Submodule path 'themes/scientific-python-hugo-theme/themes/hugo-atom-feed': checked out 'd545effed9949bf834eaed09ad423ec3e030794f'
git submodule update --init
python gen_config.py
make: python: No such file or directory
make: *** [Makefile:19: prepare] Error 127
bs@bs-Lenovo-E41-25:~/numpy$ make serve
make: *** No rule to make target 'serve'.  Stop.
bs@bs-Lenovo-E41-25:~/numpy$ python3 gen_config.py
hugo server
python3: can't open file '/home/bs/numpy/gen_config.py': [Errno 2] No such file or directory
Hugo provides its own webserver which builds and serves the site.
While hugo server is high performance, it is a webserver with limited options.

The `hugo server` command will by default write and serve files from disk, but
you can render to memory by using the `--renderToMemory` flag. This can be
faster in some cases, but it will consume more memory.

By default hugo will also watch your files for any changes you make and
automatically rebuild the site. It will then live reload any open browser pages
and push the latest content to them. As most Hugo sites are built in a fraction
of a second, you will be able to save and see your changes nearly instantly.

Usage:
  hugo server [command] [flags]
  hugo server [command]

Aliases:
  server, serve

Available Commands:
  trust       Install the local CA in the system trust store

Flags:
      --appendPort               append port to baseURL (default true)
  -b, --baseURL string           hostname (and path) to the root, e.g. https://spf13.com/
      --bind string              interface to which the server will bind (default "127.0.0.1")
  -D, --buildDrafts              include content marked as draft
  -E, --buildExpired             include expired content
  -F, --buildFuture              include content with publishdate in the future
      --cacheDir string          filesystem path to cache directory
      --cleanDestinationDir      remove files from destination not found in static directories
  -c, --contentDir string        filesystem path to content directory
      --disableBrowserError      do not show build errors in the browser
      --disableFastRender        enables full re-renders on changes
      --disableKinds strings     disable different kind of pages (home, RSS etc.)
      --disableLiveReload        watch without enabling live browser reload on rebuild
      --enableGitInfo            add Git revision, date, author, and CODEOWNERS info to the pages
      --forceSyncStatic          copy all files when static is changed.
      --gc                       enable to run some cleanup tasks (remove unused cache files) after the build
  -h, --help                     help for server
      --ignoreCache              ignores the cache directory
  -l, --layoutDir string         filesystem path to layout directory
      --liveReloadPort int       port for live reloading (i.e. 443 in HTTPS proxy situations) (default -1)
      --minify                   minify any supported output format (HTML, XML etc.)
  -N, --navigateToChanged        navigate to changed content file on live browser reload
      --noChmod                  don't sync permission mode of files
      --noHTTPCache              prevent HTTP caching
      --noTimes                  don't sync modification time of files
  -O, --openBrowser              open the site in a browser after server startup
      --panicOnWarning           panic on first WARNING log
      --poll string              set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
  -p, --port int                 port on which the server will listen (default 1313)
      --pprof                    enable the pprof server (port 8080)
      --printI18nWarnings        print missing translations
      --printMemoryUsage         print memory usage to screen at intervals
      --printPathWarnings        print warnings on duplicate target paths etc.
      --printUnusedTemplates     print warnings on unused templates.
      --renderSegments strings   named segments to render (configured in the segments config)
      --renderStaticToDisk       serve static files from disk and dynamic files from memory
      --templateMetrics          display metrics about template executions
      --templateMetricsHints     calculate some improvement hints when combined with --templateMetrics
  -t, --theme strings            themes to use (located in /themes/THEMENAME/)
      --tlsAuto                  generate and use locally-trusted certificates.
      --tlsCertFile string       path to TLS certificate file
      --tlsKeyFile string        path to TLS key file
      --trace file               write trace to file (not useful in general)
  -w, --watch                    watch filesystem for changes and recreate as needed (default true)

Global Flags:
      --clock string               set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00
      --config string              config file (default is hugo.yaml|json|toml)
      --configDir string           config dir (default "config")
  -d, --destination string         filesystem path to write files to
  -e, --environment string         build environment
      --ignoreVendorPaths string   ignores any _vendor for module paths matching the given Glob pattern
      --logLevel string            log level (debug|info|warn|error)
      --noBuildLock                don't create .hugo_build.lock file
      --quiet                      build in quiet mode
  -M, --renderToMemory             render to memory (mostly useful when running the server)
  -s, --source string              filesystem path to read files relative from
      --themesDir string           filesystem path to themes directory

Use "hugo server [command] --help" for more information about a command.

Error: command error: Unable to locate config file or config directory. Perhaps you need to create a new site.
Run `hugo help new` for details.
bs@bs-Lenovo-E41-25:~/numpy$ hugo server
Hugo provides its own webserver which builds and serves the site.
While hugo server is high performance, it is a webserver with limited options.

The `hugo server` command will by default write and serve files from disk, but
you can render to memory by using the `--renderToMemory` flag. This can be
faster in some cases, but it will consume more memory.

By default hugo will also watch your files for any changes you make and
automatically rebuild the site. It will then live reload any open browser pages
and push the latest content to them. As most Hugo sites are built in a fraction
of a second, you will be able to save and see your changes nearly instantly.

Usage:
  hugo server [command] [flags]
  hugo server [command]

Aliases:
  server, serve

Available Commands:
  trust       Install the local CA in the system trust store

Flags:
      --appendPort               append port to baseURL (default true)
  -b, --baseURL string           hostname (and path) to the root, e.g. https://spf13.com/
      --bind string              interface to which the server will bind (default "127.0.0.1")
  -D, --buildDrafts              include content marked as draft
  -E, --buildExpired             include expired content
  -F, --buildFuture              include content with publishdate in the future
      --cacheDir string          filesystem path to cache directory
      --cleanDestinationDir      remove files from destination not found in static directories
  -c, --contentDir string        filesystem path to content directory
      --disableBrowserError      do not show build errors in the browser
      --disableFastRender        enables full re-renders on changes
      --disableKinds strings     disable different kind of pages (home, RSS etc.)
      --disableLiveReload        watch without enabling live browser reload on rebuild
      --enableGitInfo            add Git revision, date, author, and CODEOWNERS info to the pages
      --forceSyncStatic          copy all files when static is changed.
      --gc                       enable to run some cleanup tasks (remove unused cache files) after the build
  -h, --help                     help for server
      --ignoreCache              ignores the cache directory
  -l, --layoutDir string         filesystem path to layout directory
      --liveReloadPort int       port for live reloading (i.e. 443 in HTTPS proxy situations) (default -1)
      --minify                   minify any supported output format (HTML, XML etc.)
  -N, --navigateToChanged        navigate to changed content file on live browser reload
      --noChmod                  don't sync permission mode of files
      --noHTTPCache              prevent HTTP caching
      --noTimes                  don't sync modification time of files
  -O, --openBrowser              open the site in a browser after server startup
      --panicOnWarning           panic on first WARNING log
      --poll string              set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
  -p, --port int                 port on which the server will listen (default 1313)
      --pprof                    enable the pprof server (port 8080)
      --printI18nWarnings        print missing translations
      --printMemoryUsage         print memory usage to screen at intervals
      --printPathWarnings        print warnings on duplicate target paths etc.
      --printUnusedTemplates     print warnings on unused templates.
      --renderSegments strings   named segments to render (configured in the segments config)
      --renderStaticToDisk       serve static files from disk and dynamic files from memory
      --templateMetrics          display metrics about template executions
      --templateMetricsHints     calculate some improvement hints when combined with --templateMetrics
  -t, --theme strings            themes to use (located in /themes/THEMENAME/)
      --tlsAuto                  generate and use locally-trusted certificates.
      --tlsCertFile string       path to TLS certificate file
      --tlsKeyFile string        path to TLS key file
      --trace file               write trace to file (not useful in general)
  -w, --watch                    watch filesystem for changes and recreate as needed (default true)

Global Flags:
      --clock string               set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00
      --config string              config file (default is hugo.yaml|json|toml)
      --configDir string           config dir (default "config")
  -d, --destination string         filesystem path to write files to
  -e, --environment string         build environment
      --ignoreVendorPaths string   ignores any _vendor for module paths matching the given Glob pattern
      --logLevel string            log level (debug|info|warn|error)
      --noBuildLock                don't create .hugo_build.lock file
      --quiet                      build in quiet mode
  -M, --renderToMemory             render to memory (mostly useful when running the server)
  -s, --source string              filesystem path to read files relative from
      --themesDir string           filesystem path to themes directory

Use "hugo server [command] --help" for more information about a command.

Error: command error: Unable to locate config file or config directory. Perhaps you need to create a new site.
Run `hugo help new` for details.
bs@bs-Lenovo-E41-25:~/numpy$ hugo version
hugo v0.147.8-10da2bd765d227761641f94d713d094e88b920ae+extended linux/amd64 BuildDate=2025-06-07T12:59:52Z VendorInfo=gohugoio
bs@bs-Lenovo-E41-25:~/numpy$ go version
go version go1.22.2 linux/amd64
bs@bs-Lenovo-E41-25:~/numpy$ 

bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ git submodule update --init --recursive
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ make serve
git submodule update --init
python gen_config.py
make: python: No such file or directory
make: *** [Makefile:19: prepare] Error 127
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ python3 gen_config.py
hugo server
Watching for changes in /home/bs/numpy/numpy.org/{archetypes,assets,content,layouts,static,themes}
Watching for config changes in /home/bs/numpy/numpy.org/config.yaml, /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/config.yaml, /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/themes/hugo-atom-feed/config.toml
Start building sites … 
hugo v0.147.8-10da2bd765d227761641f94d713d094e88b920ae+extended linux/amd64 BuildDate=2025-06-07T12:59:52Z VendorInfo=gohugoio

ERROR TOCSS-DART: failed to transform "theme-css/sphinx-design/index.scss.css" (text/x-scss): got unexpected EOF when executing "sass". The user running hugo must have read and execute permissions on this program. With execute permissions only, this error is thrown.
ERROR TOCSS-DART: failed to transform "theme-css/pst/bootstrap.scss.css" (text/x-scss): "<stream>:1:1": connection is shut down
ERROR TOCSS-DART: failed to transform "theme-css/pst/pydata-sphinx-theme.scss.css" (text/x-scss): "<stream>:1:1": connection is shut down
Built in 4585 ms
Error: error building site: TOCSS-DART: failed to transform "theme-css/pst/bootstrap.scss.css" (text/x-scss): "<stream>:1:1": connection is shut down
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ 

இவை எனக்குக் கிடைத்த வெளியீடுகள்

sudo apt install python-is-python3

இந்த கமாண்டை இயக்கி python என்றால் python3 என்றவாறு வைக்கவும். பின்

stat $(realpath $(type -P sass))

இந்த கமாண்டை இயக்கி வரும் தகவலை பகிரவும்.

bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ sudo apt install python-is-python3
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
python-is-python3 is already the newest version (3.11.4-1).
The following packages were automatically installed and are no longer required:
  golang-any linux-headers-6.8.0-51 linux-headers-6.8.0-51-generic
  linux-headers-6.8.0-52 linux-headers-6.8.0-52-generic linux-image-6.8.0-51-generic
  linux-image-6.8.0-52-generic linux-modules-6.8.0-51-generic
  linux-modules-6.8.0-52-generic linux-modules-extra-6.8.0-51-generic
  linux-modules-extra-6.8.0-52-generic linux-tools-6.8.0-51 linux-tools-6.8.0-51-generic
  linux-tools-6.8.0-52 linux-tools-6.8.0-52-generic
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 39 not upgraded.
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ stat $(realpath $(type -P sass))
  File: /home/bs/.nvm/versions/node/v22.12.0/lib/node_modules/sass/sass.js
  Size: 657       	Blocks: 8          IO Block: 4096   regular file
Device: 8,8	Inode: 4500670     Links: 1
Access: (0775/-rwxrwxr-x)  Uid: ( 1000/      bs)   Gid: ( 1000/      bs)
Access: 2025-06-24 20:22:13.109948736 +0530
Modify: 2025-06-11 14:35:49.354829150 +0530
Change: 2025-06-11 14:55:12.120029435 +0530
 Birth: 2025-06-11 14:35:49.352829168 +0530

இந்த கமாண்டைக்கு எனக்கு வரும் தகவல்

realpath $(type -P python)
type sass
for path in $(echo "${PATH//:/ }"); do echo $path; done

இந்த கமாண்டுகளை இயக்கி வரும் தகவலை பகிரவும்.

bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ realpath $(type -P python)
/usr/bin/python3.12
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ type sass
sass is /home/bs/.nvm/versions/node/v22.12.0/bin/sass
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ for path in $(echo "${PATH//:/ }"); do echo $path; done
/home/bs/.bun/bin
/home/bs/.nvm/versions/node/v22.12.0/bin
/home/bs/.rbenv/shims
/home/bs/.rbenv/bin
/home/bs/.rbenv/shims
/home/bs/.rbenv/bin
/home/bs/.cargo/bin
/home/bs/.deno/bin
/home/bs/.local/bin
/home/bs/bin
/usr/local/sbin
/usr/local/bin
/usr/sbin
/usr/bin
/sbin
/bin
/usr/games
/usr/local/games
/snap/bin
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$

இந்த கமாண்டுகளுக்கு எனக்கு வரும் தகவல்

mv /home/bs/.nvm/versions/node/v22.12.0/bin/sass /home/bs/.nvm/versions/node/v22.12.0/bin/sass.disabled
type -P sass

இந்த இரண்டு கமாண்டையும் இயக்கவும். வரும் தகவலை பகிரவும்.

bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ mv /home/bs/.nvm/versions/node/v22.12.0/bin/sass /home/bs/.nvm/versions/node/v22.12.0/bin/sass.disabled
mv: cannot stat '/home/bs/.nvm/versions/node/v22.12.0/bin/sass': No such file or directory
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$ type -P sass
/home/bs/.local/bin/sass
bs@bs-Lenovo-E41-25:~/numpy/numpy.org$

இந்த இரண்டு கமாண்டுகளுக்கும் எனக்குக் கிடைக்கும் தகவல்

முன்பே இருக்கும் ~/numpy/numpy.org டைரக்டரியை நீக்கிவிடவும். பின்

git clone https://github.com/numpy/numpy.org.git
(cd numpy.org; git submodule update --init --recursive; make serve)

இந்த கமாண்டை இயக்கவும். உங்களால் http://localhost:1313 ல் numpy.org இணையதளத்தின் பக்கங்களை பார்க்க முடிகின்றதா என்று கூறவும்.

bs@bs-Lenovo-E41-25:~$ mkdir numpy
bs@bs-Lenovo-E41-25:~$ cd numpy
bs@bs-Lenovo-E41-25:~/numpy$ git clone https://github.com/numpy/numpy.org.git
(cd numpy.org; git submodule update --init --recursive; make serve)
Cloning into 'numpy.org'...
remote: Enumerating objects: 21271, done.
remote: Counting objects: 100% (126/126), done.
remote: Compressing objects: 100% (66/66), done.
remote: Total 21271 (delta 82), reused 79 (delta 60), pack-reused 21145 (from 3)
Receiving objects: 100% (21271/21271), 25.72 MiB | 1.47 MiB/s, done.
Resolving deltas: 100% (14345/14345), done.
Submodule 'themes/scientific-python-hugo-theme' (https://github.com/scientific-python/scientific-python-hugo-theme.git) registered for path 'themes/scientific-python-hugo-theme'
Cloning into '/home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme'...
Submodule path 'themes/scientific-python-hugo-theme': checked out '42b638f37c0f5869a112f0c274d03bc349d1a7b3'
Submodule 'themes/hugo-atom-feed' (https://github.com/kaushalmodi/hugo-atom-feed) registered for path 'themes/scientific-python-hugo-theme/themes/hugo-atom-feed'
Cloning into '/home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/themes/hugo-atom-feed'...
Submodule path 'themes/scientific-python-hugo-theme/themes/hugo-atom-feed': checked out 'd545effed9949bf834eaed09ad423ec3e030794f'
git submodule update --init
python gen_config.py
hugo  --printI18nWarnings server -D
Watching for changes in /home/bs/numpy/numpy.org/{archetypes,assets,content,layouts,static,themes}
Watching for config changes in /home/bs/numpy/numpy.org/config.yaml, /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/config.yaml, /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/themes/hugo-atom-feed/config.toml
Start building sites … 
hugo v0.147.8-10da2bd765d227761641f94d713d094e88b920ae+extended linux/amd64 BuildDate=2025-06-07T12:59:52Z VendorInfo=gohugoio

WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/sphinx-design/index.scss:0:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/sphinx-design/index.scss:1:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/sphinx-design/index.scss:2:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/sphinx-design/index.scss:3:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/sphinx-design/index.scss:4:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [global-builtin]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/sphinx-design/_variables.scss:7:38: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
Use color.mix instead.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [global-builtin]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/sphinx-design/_colors.scss:45:13: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
Use color.lightness instead.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [color-functions]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/sphinx-design/_colors.scss:45:13: lightness() is deprecated. Suggestion:

color.channel($color, "lightness", $space: hsl)

More info: https://sass-lang.com/d/color-functions
WARN  Dart Sass: 7 repetitive deprecation warnings omitted.
Run in verbose mode to see all warnings.
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/bootstrap.scss:0:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/pydata-sphinx-theme.scss:2:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/pydata-sphinx-theme.scss:7:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/pydata-sphinx-theme.scss:8:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/pydata-sphinx-theme.scss:9:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/pydata-sphinx-theme.scss:10:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import
WARN  Dart Sass: DEPRECATED [color-functions]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/abstracts/_accessibility.scss:53:9: color.red() is deprecated. Suggestion:

color.channel($color, "red", $space: rgb)

More info: https://sass-lang.com/d/color-functions
WARN  Dart Sass: DEPRECATED [color-functions]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/abstracts/_accessibility.scss:54:9: color.green() is deprecated. Suggestion:

color.channel($color, "green", $space: rgb)

More info: https://sass-lang.com/d/color-functions
WARN  Dart Sass: DEPRECATED [color-functions]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/abstracts/_accessibility.scss:55:9: color.blue() is deprecated. Suggestion:

color.channel($color, "blue", $space: rgb)

More info: https://sass-lang.com/d/color-functions
WARN  Dart Sass: Found no color leading to 4.5:1 contrast ratio against rgb(210.2752755906, 89.8808808221, 7.3247244094)...
WARN  Dart Sass: DEPRECATED [mixed-decls]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/variables/_color.scss:340:4: Sass's behavior for declarations that appear after nested
rules will be changing to match the behavior specified by CSS in an upcoming
version. To keep the existing behavior, move the declaration above the nested
rule. To opt into the new behavior, wrap the declaration in `& {}`.

More info: https://sass-lang.com/d/mixed-decls
WARN  Dart Sass: DEPRECATED [mixed-decls]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/content/_admonitions.scss:49:4: Sass's behavior for declarations that appear after nested
rules will be changing to match the behavior specified by CSS in an upcoming
version. To keep the existing behavior, move the declaration above the nested
rule. To opt into the new behavior, wrap the declaration in `& {}`.

More info: https://sass-lang.com/d/mixed-decls
WARN  Dart Sass: DEPRECATED [mixed-decls]: file:///home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/pst/content/_admonitions.scss:52:4: Sass's behavior for declarations that appear after nested
rules will be changing to match the behavior specified by CSS in an upcoming
version. To keep the existing behavior, move the declaration above the nested
rule. To opt into the new behavior, wrap the declaration in `& {}`.

More info: https://sass-lang.com/d/mixed-decls
WARN  Dart Sass: 17 repetitive deprecation warnings omitted.
Run in verbose mode to see all warnings.
WARN  Dart Sass: DEPRECATED [import]: /home/bs/numpy/numpy.org/themes/scientific-python-hugo-theme/assets/theme-css/spht/index.scss:0:8: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

More info and automated migrator: https://sass-lang.com/d/import

              │ EN │ PT │ JA │ ES 
──────────────┼────┼────┼────┼────
 Pages        │ 30 │ 28 │ 28 │ 28 
 Paginator    │  0 │  0 │  0 │  0 
 pages        │    │    │    │    
 Non-page     │  9 │  2 │  2 │  2 
 files        │    │    │    │    
 Static files │ 96 │ 96 │ 96 │ 96 
 Processed    │  0 │  0 │  0 │  0 
 images       │    │    │    │    
 Aliases      │  2 │  1 │  1 │  1 
 Cleaned      │  0 │  0 │  0 │  0 

Built in 1559 ms
Environment: "development"
Serving pages from disk
Running in Fast Render Mode. For full rebuilds on change: hugo server --disableFastRender
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1) 
Press Ctrl+C to stop

இப்போது சிறப்பாக இயங்குகின்றது,

மிகவும் நன்றி,

இப்போது இயங்வது எப்படி?

மகிழ்ச்சி

dart-sass சரியாக நிறுவப்படாமல் இருந்தது, அதை முதலில் சரியாக நிறுவினோம், அதை நிறுவிய பிறகும் node வழியாக நிறுவப்பட்ட sass முதன்மையாக எடுத்துக்கொள்ளப்பட்டது, அதை சரி செய்தோம். இதை இரண்டும் செய்தபின் சரியாக இயங்க தொடங்கிவிட்டது.